diff --git a/Obsidian.API/Registry/Codecs/Biomes/BiomeCodec.cs b/Obsidian.API/Registry/Codecs/Biomes/BiomeCodec.cs index 957217c19..5c8df27e3 100644 --- a/Obsidian.API/Registry/Codecs/Biomes/BiomeCodec.cs +++ b/Obsidian.API/Registry/Codecs/Biomes/BiomeCodec.cs @@ -2,9 +2,9 @@ public sealed record class BiomeCodec : ICodec { - public string Name { get; set; } + public required string Name { get; set; } - public int Id { get; set; } + public required int Id { get; set; } - public BiomeElement Element { get; set; } + public required BiomeElement Element { get; set; } } diff --git a/Obsidian.API/Registry/Codecs/Biomes/BiomeElement.cs b/Obsidian.API/Registry/Codecs/Biomes/BiomeElement.cs index a1c4ead71..908c2f22a 100644 --- a/Obsidian.API/Registry/Codecs/Biomes/BiomeElement.cs +++ b/Obsidian.API/Registry/Codecs/Biomes/BiomeElement.cs @@ -1,4 +1,6 @@ -namespace Obsidian.API.Registry.Codecs.Biomes; +using System.Text.Json.Serialization; + +namespace Obsidian.API.Registry.Codecs.Biomes; public sealed record class BiomeElement { @@ -6,7 +8,6 @@ public sealed record class BiomeElement public required bool HasPrecipitation { get; set; } - public float Depth { get; set; } public float Temperature { get; set; } public float Scale { get; set; } @@ -15,5 +16,30 @@ public sealed record class BiomeElement public string? Category { get; set; } public string? TemperatureModifier { get; set; } + public string[][] Features { get; set; } = []; + public Dictionary Carvers { get; set; } = default!; + public Dictionary Spawners { get; set; } = default!; + public Dictionary SpawnCosts { get; set; } = default!; + public bool PlayerSpawnFriendly { get; set; } } + +public sealed class SpawnCost +{ + public required float Charge { get; init; } + public required float EnergyBudget { get; init; } +} + +public sealed class SpawnerMob +{ + public required string Type { get; init; } + + [JsonPropertyName("maxCount")] + public required int MaxCount { get; init; } + + [JsonPropertyName("minCount")] + public required int MinCount { get; init; } + + [JsonPropertyName("weight")] + public required int Weight { get; init; } +} diff --git a/Obsidian.API/Registry/Codecs/Chat/ChatCodec.cs b/Obsidian.API/Registry/Codecs/Chat/ChatCodec.cs index 835422038..a7969d746 100644 --- a/Obsidian.API/Registry/Codecs/Chat/ChatCodec.cs +++ b/Obsidian.API/Registry/Codecs/Chat/ChatCodec.cs @@ -1,6 +1,6 @@ namespace Obsidian.API.Registry.Codecs.Chat; -public sealed record class ChatCodec +public sealed record class ChatCodec : ICodec { public required string Name { get; init; } diff --git a/Obsidian.API/Registry/Codecs/WolfVariant/WolfVariantCodec.cs b/Obsidian.API/Registry/Codecs/WolfVariant/WolfVariantCodec.cs new file mode 100644 index 000000000..6998448c1 --- /dev/null +++ b/Obsidian.API/Registry/Codecs/WolfVariant/WolfVariantCodec.cs @@ -0,0 +1,9 @@ +namespace Obsidian.API.Registry.Codecs.WolfVariant; +public sealed record class WolfVariantCodec : ICodec +{ + public required string Name { get; init; } + + public required int Id { get; init; } + + public required WolfVariantElement Element { get; init; } +} diff --git a/Obsidian.API/Registry/Codecs/WolfVariant/WolfVariantElement.cs b/Obsidian.API/Registry/Codecs/WolfVariant/WolfVariantElement.cs new file mode 100644 index 000000000..02ff0a20d --- /dev/null +++ b/Obsidian.API/Registry/Codecs/WolfVariant/WolfVariantElement.cs @@ -0,0 +1,8 @@ +namespace Obsidian.API.Registry.Codecs.WolfVariant; +public sealed class WolfVariantElement +{ + public required string AngryTexture { get; init; } + public required string Biomes { get; init; } + public required string TameTexture { get; init; } + public required string WildTexture { get; init; } +} diff --git a/Obsidian.API/_Enums/EntityEffect.cs b/Obsidian.API/_Enums/EntityEffect.cs new file mode 100644 index 000000000..343c66fa5 --- /dev/null +++ b/Obsidian.API/_Enums/EntityEffect.cs @@ -0,0 +1,22 @@ +namespace Obsidian.API; +[Flags] +public enum EntityEffect : sbyte +{ + None = 0x00, + + /// + /// Whether the potion is emitted by ambient source e.g. the beacon. The icon has a blue border in the HUD if its ambient. + /// + IsAmbient = 0x01, + + /// + /// Whether to show the particles or not. + /// + ShowParticles = 0x02, + + /// + /// Whether to show the icon on the client or not. + /// + ShowIcon = 0x04, + Blend = 0x08 +} diff --git a/Obsidian.API/_Enums/EntityType.cs b/Obsidian.API/_Enums/EntityType.cs index 9a4a2220c..edcab10ee 100644 --- a/Obsidian.API/_Enums/EntityType.cs +++ b/Obsidian.API/_Enums/EntityType.cs @@ -4,6 +4,7 @@ public enum EntityType : int { Allay, AreaEffectCloud, + Armadillo, ArmorStand, Arrow, Axolotl, @@ -12,7 +13,9 @@ public enum EntityType : int Blaze, BlockDisplay, Boat, + Bogged, Breeze, + BreezeWindCharge, Camel, Cat, CaveSpider, @@ -60,6 +63,7 @@ public enum EntityType : int Item, ItemDisplay, ItemFrame, + OminousItemSpawner, Fireball, LeashKnot, LightningBolt, diff --git a/Obsidian.API/_Enums/ParticleType.cs b/Obsidian.API/_Enums/ParticleType.cs index 7c13d028d..a0e63c7cf 100644 --- a/Obsidian.API/_Enums/ParticleType.cs +++ b/Obsidian.API/_Enums/ParticleType.cs @@ -2,105 +2,113 @@ public enum ParticleType : int { - AmbientEntityEffect = 0, - AngryVillager = 1, - Block = 2, - BlockMarker = 3, - Bubble = 4, - Cloud = 5, - Crit = 6, - DamageIndicator = 7, - DragonBreath = 8, - DrippingLava = 9, - FallingLava = 10, - LandingLava = 11, - DrippingWater = 12, - FallingWater = 13, - Dust = 14, - DustColorTransition = 15, - Effect = 16, - ElderGuardian = 17, - EnchantedHit = 18, - Enchant = 19, - EndRod = 20, - EntityEffect = 21, - ExplosionEmitter = 22, - Explosion = 23, - 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, + AngryVillager = 0, + Block = 1, + BlockMarker = 2, + Bubble = 3, + Cloud = 4, + Crit = 5, + DamageIndicator = 6, + DragonBreath = 7, + DrippingLava = 8, + FallingLava = 9, + LandingLava = 10, + DrippingWater = 11, + FallingWater = 12, + Dust = 13, + DustColorTransition = 14, + Effect = 15, + ElderGuardian = 16, + EnchantedHit = 17, + Enchant = 18, + EndRod = 19, + EntityEffect = 20, + ExplosionEmitter = 21, + Explosion = 22, + Gust = 23, + SmallGust = 24, + GustEmitterLarge = 25, + GustEmitterSmall = 26, + SonicBoom = 27, + FallingDust = 28, + Firework = 29, + Fishing = 30, + Flame = 31, + Infested = 32, + CherryLeaves = 33, + SculkSoul = 34, + SculkCharge = 35, + SculkChargePop = 36, + SoulFireFlame = 37, + Soul = 38, + Flash = 39, + HappyVillager = 40, + Composter = 41, + Heart = 42, + InstantEffect = 43, + Item = 44, + Vibration = 45, + ItemSlime = 46, + ItemCobweb = 47, + ItemSnowball = 48, + LargeSmoke = 49, + Lava = 50, + Mycelium = 51, + Note = 52, + Poof = 53, + Portal = 54, + Rain = 55, + Smoke = 56, + WhiteSmoke = 57, + Sneeze = 58, + Spit = 59, + SquidInk = 60, + SweepAttack = 61, + TotemOfUndying = 62, + Underwater = 63, + Splash = 64, + Witch = 65, + BubblePop = 66, + CurrentDown = 67, + BubbleColumnUp = 68, + Nautilus = 69, + Dolphin = 70, + CampfireCosySmoke = 71, + CampfireSignalSmoke = 72, + DrippingHoney = 73, + FallingHoney = 74, + LandingHoney = 75, + FallingNectar = 76, + FallingSporeBlossom = 77, + Ash = 78, + CrimsonSpore = 79, + WarpedSpore = 80, + SporeBlossomAir = 81, + DrippingObsidianTear = 82, + FallingObsidianTear = 83, + LandingObsidianTear = 84, + ReversePortal = 85, + WhiteAsh = 86, + SmallFlame = 87, + Snowflake = 88, + DrippingDripstoneLava = 89, + FallingDripstoneLava = 90, + DrippingDripstoneWater = 91, + FallingDripstoneWater = 92, + GlowSquidInk = 93, + Glow = 94, + WaxOn = 95, + WaxOff = 96, + ElectricSpark = 97, + Scrape = 98, + Shriek = 99, + EggCrack = 100, + DustPlume = 101, + TrialSpawnerDetection = 102, + TrialSpawnerDetectionOminous = 103, + VaultConnection = 104, + DustPillar = 105, + OminousSpawning = 106, + RaidOmen = 107, + TrialOmen = 108, } diff --git a/Obsidian.API/_Enums/ProtocolVersion.cs b/Obsidian.API/_Enums/ProtocolVersion.cs index ed02a7b32..e6e7060f1 100644 --- a/Obsidian.API/_Enums/ProtocolVersion.cs +++ b/Obsidian.API/_Enums/ProtocolVersion.cs @@ -54,5 +54,9 @@ public enum ProtocolVersion //1.20.3 same pvn [Description("1.20.4")] - v1_20_4 = 765 + v1_20_4 = 765, + + //1.20.5 same pvn + [Description("1.20.6")] + v1_20_6 = 766 } diff --git a/Obsidian.API/_Enums/SoundId.cs b/Obsidian.API/_Enums/SoundId.cs index 37bb164e9..7e24a5344 100644 --- a/Obsidian.API/_Enums/SoundId.cs +++ b/Obsidian.API/_Enums/SoundId.cs @@ -50,679 +50,708 @@ public enum SoundId : int BlockAnvilPlace = 52, BlockAnvilStep = 53, BlockAnvilUse = 54, - BlockAzaleaBreak = 81, - BlockAzaleaFall = 82, - BlockAzaleaHit = 83, - BlockAzaleaPlace = 84, - BlockAzaleaStep = 85, - BlockAzaleaLeavesBreak = 86, - BlockAzaleaLeavesFall = 87, - BlockAzaleaLeavesHit = 88, - BlockAzaleaLeavesPlace = 89, - BlockAzaleaLeavesStep = 90, - BlockBambooBreak = 91, - BlockBambooFall = 92, - BlockBambooHit = 93, - BlockBambooPlace = 94, - BlockBambooStep = 95, - BlockBambooSaplingBreak = 96, - BlockBambooSaplingHit = 97, - BlockBambooSaplingPlace = 98, - BlockBambooWoodBreak = 99, - BlockBambooWoodFall = 100, - BlockBambooWoodHit = 101, - BlockBambooWoodPlace = 102, - BlockBambooWoodStep = 103, - BlockBambooWoodButtonClickOff = 108, - BlockBambooWoodButtonClickOn = 109, - BlockBambooWoodDoorClose = 104, - BlockBambooWoodDoorOpen = 105, - BlockBambooWoodFenceGateClose = 112, - BlockBambooWoodFenceGateOpen = 113, - BlockBambooWoodHangingSignBreak = 635, - BlockBambooWoodHangingSignFall = 636, - BlockBambooWoodHangingSignHit = 637, - BlockBambooWoodHangingSignPlace = 638, - BlockBambooWoodHangingSignStep = 634, - BlockBambooWoodPressurePlateClickOff = 110, - BlockBambooWoodPressurePlateClickOn = 111, - BlockBambooWoodTrapdoorClose = 106, - BlockBambooWoodTrapdoorOpen = 107, - BlockBarrelClose = 114, - BlockBarrelOpen = 115, - BlockBasaltBreak = 116, - BlockBasaltFall = 120, - BlockBasaltHit = 119, - BlockBasaltPlace = 118, - BlockBasaltStep = 117, - BlockBeaconActivate = 126, - BlockBeaconAmbient = 127, - BlockBeaconDeactivate = 128, - BlockBeaconPowerSelect = 129, - BlockBeehiveDrip = 136, - BlockBeehiveEnter = 137, - BlockBeehiveExit = 138, - BlockBeehiveShear = 139, - BlockBeehiveWork = 140, - BlockBellResonate = 142, - BlockBellUse = 141, - BlockBigDripleafBreak = 143, - BlockBigDripleafFall = 144, - BlockBigDripleafHit = 145, - BlockBigDripleafPlace = 146, - BlockBigDripleafStep = 147, - BlockBigDripleafTiltDown = 414, - BlockBigDripleafTiltUp = 415, - BlockBlastfurnaceFireCrackle = 163, - BlockBoneBlockBreak = 155, - BlockBoneBlockFall = 156, - BlockBoneBlockHit = 157, - BlockBoneBlockPlace = 158, - BlockBoneBlockStep = 159, - 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, + BlockAzaleaBreak = 96, + BlockAzaleaFall = 97, + BlockAzaleaHit = 98, + BlockAzaleaPlace = 99, + BlockAzaleaStep = 100, + BlockAzaleaLeavesBreak = 101, + BlockAzaleaLeavesFall = 102, + BlockAzaleaLeavesHit = 103, + BlockAzaleaLeavesPlace = 104, + BlockAzaleaLeavesStep = 105, + BlockBambooBreak = 106, + BlockBambooFall = 107, + BlockBambooHit = 108, + BlockBambooPlace = 109, + BlockBambooStep = 110, + BlockBambooSaplingBreak = 111, + BlockBambooSaplingHit = 112, + BlockBambooSaplingPlace = 113, + BlockBambooWoodBreak = 114, + BlockBambooWoodFall = 115, + BlockBambooWoodHit = 116, + BlockBambooWoodPlace = 117, + BlockBambooWoodStep = 118, + BlockBambooWoodButtonClickOff = 123, + BlockBambooWoodButtonClickOn = 124, + BlockBambooWoodDoorClose = 119, + BlockBambooWoodDoorOpen = 120, + BlockBambooWoodFenceGateClose = 127, + BlockBambooWoodFenceGateOpen = 128, + BlockBambooWoodHangingSignBreak = 670, + BlockBambooWoodHangingSignFall = 671, + BlockBambooWoodHangingSignHit = 672, + BlockBambooWoodHangingSignPlace = 673, + BlockBambooWoodHangingSignStep = 669, + BlockBambooWoodPressurePlateClickOff = 125, + BlockBambooWoodPressurePlateClickOn = 126, + BlockBambooWoodTrapdoorClose = 121, + BlockBambooWoodTrapdoorOpen = 122, + BlockBarrelClose = 129, + BlockBarrelOpen = 130, + BlockBasaltBreak = 131, + BlockBasaltFall = 135, + BlockBasaltHit = 134, + BlockBasaltPlace = 133, + BlockBasaltStep = 132, + BlockBeaconActivate = 141, + BlockBeaconAmbient = 142, + BlockBeaconDeactivate = 143, + BlockBeaconPowerSelect = 144, + BlockBeehiveDrip = 151, + BlockBeehiveEnter = 152, + BlockBeehiveExit = 153, + BlockBeehiveShear = 154, + BlockBeehiveWork = 155, + BlockBellResonate = 157, + BlockBellUse = 156, + BlockBigDripleafBreak = 158, + BlockBigDripleafFall = 159, + BlockBigDripleafHit = 160, + BlockBigDripleafPlace = 161, + BlockBigDripleafStep = 162, + BlockBigDripleafTiltDown = 444, + BlockBigDripleafTiltUp = 445, + BlockBlastfurnaceFireCrackle = 183, + BlockBoneBlockBreak = 175, + BlockBoneBlockFall = 176, + BlockBoneBlockHit = 177, + BlockBoneBlockPlace = 178, + BlockBoneBlockStep = 179, + BlockBrewingStandBrew = 200, + BlockBubbleColumnBubblePop = 206, + BlockBubbleColumnUpwardsAmbient = 207, + BlockBubbleColumnUpwardsInside = 208, + BlockBubbleColumnWhirlpoolAmbient = 209, + BlockBubbleColumnWhirlpoolInside = 210, + BlockCakeAddCandle = 226, + BlockCalciteBreak = 227, + BlockCalciteFall = 231, + BlockCalciteHit = 230, + BlockCalcitePlace = 229, + BlockCalciteStep = 228, + BlockCampfireCrackle = 243, + BlockCandleAmbient = 244, + BlockCandleBreak = 245, + BlockCandleExtinguish = 246, + BlockCandleFall = 247, + BlockCandleHit = 248, + BlockCandlePlace = 249, + BlockCandleStep = 250, + BlockCaveVinesBreak = 260, + BlockCaveVinesFall = 261, + BlockCaveVinesHit = 262, + BlockCaveVinesPickBerries = 265, + BlockCaveVinesPlace = 263, + BlockCaveVinesStep = 264, + BlockChainBreak = 266, + BlockChainFall = 267, + BlockChainHit = 268, + BlockChainPlace = 269, + BlockChainStep = 270, + BlockCherryLeavesBreak = 281, + BlockCherryLeavesFall = 282, + BlockCherryLeavesHit = 283, + BlockCherryLeavesPlace = 284, + BlockCherryLeavesStep = 285, + BlockCherrySaplingBreak = 276, + BlockCherrySaplingFall = 277, + BlockCherrySaplingHit = 278, + BlockCherrySaplingPlace = 279, + BlockCherrySaplingStep = 280, + BlockCherryWoodBreak = 271, + BlockCherryWoodFall = 272, + BlockCherryWoodHit = 273, + BlockCherryWoodPlace = 274, + BlockCherryWoodStep = 275, + BlockCherryWoodButtonClickOff = 295, + BlockCherryWoodButtonClickOn = 296, + BlockCherryWoodDoorClose = 291, + BlockCherryWoodDoorOpen = 292, + BlockCherryWoodFenceGateClose = 299, + BlockCherryWoodFenceGateOpen = 300, + BlockCherryWoodHangingSignBreak = 287, + BlockCherryWoodHangingSignFall = 288, + BlockCherryWoodHangingSignHit = 289, + BlockCherryWoodHangingSignPlace = 290, + BlockCherryWoodHangingSignStep = 286, + BlockCherryWoodPressurePlateClickOff = 297, + BlockCherryWoodPressurePlateClickOn = 298, + BlockCherryWoodTrapdoorClose = 293, + BlockCherryWoodTrapdoorOpen = 294, + BlockChestClose = 301, + BlockChestLocked = 302, + BlockChestOpen = 303, + BlockChiseledBookshelfBreak = 309, + BlockChiseledBookshelfFall = 310, + BlockChiseledBookshelfHit = 311, + BlockChiseledBookshelfInsert = 312, + BlockChiseledBookshelfInsertEnchanted = 313, + BlockChiseledBookshelfPickup = 315, + BlockChiseledBookshelfPickupEnchanted = 316, + BlockChiseledBookshelfPlace = 317, + BlockChiseledBookshelfStep = 314, + BlockChorusFlowerDeath = 318, + BlockChorusFlowerGrow = 319, + BlockCobwebBreak = 321, + BlockCobwebFall = 325, + BlockCobwebHit = 324, + BlockCobwebPlace = 323, + BlockCobwebStep = 322, + BlockComparatorClick = 330, + BlockComposterEmpty = 331, + BlockComposterFill = 332, + BlockComposterFillSuccess = 333, + BlockComposterReady = 334, + BlockConduitActivate = 335, + BlockConduitAmbient = 336, + BlockConduitAmbientShort = 337, + BlockConduitAttackTarget = 338, + BlockConduitDeactivate = 339, + BlockCopperBreak = 347, + BlockCopperFall = 351, + BlockCopperHit = 350, + BlockCopperPlace = 349, + BlockCopperStep = 348, + BlockCopperBulbBreak = 340, + BlockCopperBulbFall = 344, + BlockCopperBulbHit = 343, + BlockCopperBulbPlace = 342, + BlockCopperBulbStep = 341, + BlockCopperBulbTurnOff = 346, + BlockCopperBulbTurnOn = 345, + BlockCopperDoorClose = 352, + BlockCopperDoorOpen = 353, + BlockCopperGrateBreak = 354, + BlockCopperGrateFall = 358, + BlockCopperGrateHit = 357, + BlockCopperGratePlace = 356, + BlockCopperGrateStep = 355, + BlockCopperTrapdoorClose = 359, + BlockCopperTrapdoorOpen = 360, + BlockCoralBlockBreak = 361, + BlockCoralBlockFall = 362, + BlockCoralBlockHit = 363, + BlockCoralBlockPlace = 364, + BlockCoralBlockStep = 365, + BlockCrafterCraft = 371, + BlockCrafterFail = 372, + BlockCropBreak = 376, + BlockDecoratedPotBreak = 386, + BlockDecoratedPotFall = 387, + BlockDecoratedPotHit = 388, + BlockDecoratedPotInsert = 389, + BlockDecoratedPotInsertFail = 390, + BlockDecoratedPotPlace = 392, + BlockDecoratedPotShatter = 393, + BlockDecoratedPotStep = 391, + BlockDeepslateBreak = 399, + BlockDeepslateFall = 400, + BlockDeepslateHit = 401, + BlockDeepslatePlace = 402, + BlockDeepslateStep = 403, + BlockDeepslateBricksBreak = 394, + BlockDeepslateBricksFall = 395, + BlockDeepslateBricksHit = 396, + BlockDeepslateBricksPlace = 397, + BlockDeepslateBricksStep = 398, + BlockDeepslateTilesBreak = 404, + BlockDeepslateTilesFall = 405, + BlockDeepslateTilesHit = 406, + BlockDeepslateTilesPlace = 407, + BlockDeepslateTilesStep = 408, + BlockDispenserDispense = 409, + BlockDispenserFail = 410, + BlockDispenserLaunch = 411, + BlockDripstoneBlockBreak = 429, + BlockDripstoneBlockFall = 433, + BlockDripstoneBlockHit = 432, + BlockDripstoneBlockPlace = 431, + BlockDripstoneBlockStep = 430, + BlockEnchantmentTableUse = 466, + BlockEndGatewaySpawn = 489, + BlockEndPortalSpawn = 491, + BlockEndPortalFrameFill = 490, + BlockEnderChestClose = 467, + BlockEnderChestOpen = 468, + BlockFenceGateClose = 503, + BlockFenceGateOpen = 504, + BlockFireAmbient = 514, + BlockFireExtinguish = 515, + BlockFloweringAzaleaBreak = 521, + BlockFloweringAzaleaFall = 522, + BlockFloweringAzaleaHit = 523, + BlockFloweringAzaleaPlace = 524, + BlockFloweringAzaleaStep = 525, + BlockFroglightBreak = 547, + BlockFroglightFall = 548, + BlockFroglightHit = 549, + BlockFroglightPlace = 550, + BlockFroglightStep = 551, + BlockFrogspawnBreak = 553, + BlockFrogspawnFall = 554, + BlockFrogspawnHatch = 555, + BlockFrogspawnHit = 556, + BlockFrogspawnPlace = 557, + BlockFrogspawnStep = 552, + BlockFungusBreak = 959, + BlockFungusFall = 963, + BlockFungusHit = 962, + BlockFungusPlace = 961, + BlockFungusStep = 960, + BlockFurnaceFireCrackle = 571, + BlockGildedBlackstoneBreak = 589, + BlockGildedBlackstoneFall = 590, + BlockGildedBlackstoneHit = 591, + BlockGildedBlackstonePlace = 592, + BlockGildedBlackstoneStep = 593, + BlockGlassBreak = 594, + BlockGlassFall = 595, + BlockGlassHit = 596, + BlockGlassPlace = 597, + BlockGlassStep = 598, + BlockGrassBreak = 629, + BlockGrassFall = 630, + BlockGrassHit = 631, + BlockGrassPlace = 632, + BlockGrassStep = 633, + BlockGravelBreak = 634, + BlockGravelFall = 635, + BlockGravelHit = 636, + BlockGravelPlace = 637, + BlockGravelStep = 638, + BlockGrindstoneUse = 639, + BlockGrowingPlantCrop = 640, + BlockHangingRootsBreak = 649, + BlockHangingRootsFall = 650, + BlockHangingRootsHit = 651, + BlockHangingRootsPlace = 652, + BlockHangingRootsStep = 653, + BlockHangingSignBreak = 655, + BlockHangingSignFall = 656, + BlockHangingSignHit = 657, + BlockHangingSignPlace = 658, + BlockHangingSignStep = 654, + BlockHangingSignWaxedInteractFail = 1511, + BlockHeavyCoreBreak = 659, + BlockHeavyCoreFall = 660, + BlockHeavyCoreHit = 661, + BlockHeavyCorePlace = 662, + BlockHeavyCoreStep = 663, + BlockHoneyBlockBreak = 699, + BlockHoneyBlockFall = 700, + BlockHoneyBlockHit = 701, + BlockHoneyBlockPlace = 702, + BlockHoneyBlockSlide = 703, + BlockHoneyBlockStep = 704, + BlockIronDoorClose = 747, + BlockIronDoorOpen = 748, + BlockIronTrapdoorClose = 755, + BlockIronTrapdoorOpen = 756, + BlockLadderBreak = 764, + BlockLadderFall = 765, + BlockLadderHit = 766, + BlockLadderPlace = 767, + BlockLadderStep = 768, + BlockLanternBreak = 769, + BlockLanternFall = 770, + BlockLanternHit = 771, + BlockLanternPlace = 772, + BlockLanternStep = 773, + BlockLargeAmethystBudBreak = 774, + BlockLargeAmethystBudPlace = 775, + BlockLavaAmbient = 776, + BlockLavaExtinguish = 777, + BlockLavaPop = 778, + BlockLeverClick = 781, + BlockLilyPadPlace = 1480, + BlockLodestoneBreak = 795, + BlockLodestoneFall = 799, + BlockLodestoneHit = 798, + BlockLodestonePlace = 797, + BlockLodestoneStep = 796, + BlockMangroveRootsBreak = 810, + BlockMangroveRootsFall = 811, + BlockMangroveRootsHit = 812, + BlockMangroveRootsPlace = 813, + BlockMangroveRootsStep = 814, + BlockMediumAmethystBudBreak = 815, + BlockMediumAmethystBudPlace = 816, + BlockMetalBreak = 817, + BlockMetalFall = 818, + BlockMetalHit = 819, + BlockMetalPlace = 820, + BlockMetalStep = 823, + BlockMetalPressurePlateClickOff = 821, + BlockMetalPressurePlateClickOn = 822, + BlockMossBreak = 842, + BlockMossFall = 843, + BlockMossHit = 844, + BlockMossPlace = 845, + BlockMossStep = 846, + BlockMossCarpetBreak = 832, + BlockMossCarpetFall = 833, + BlockMossCarpetHit = 834, + BlockMossCarpetPlace = 835, + BlockMossCarpetStep = 836, + BlockMudBreak = 847, + BlockMudFall = 848, + BlockMudHit = 849, + BlockMudPlace = 850, + BlockMudStep = 851, + BlockMudBricksBreak = 852, + BlockMudBricksFall = 853, + BlockMudBricksHit = 854, + BlockMudBricksPlace = 855, + BlockMudBricksStep = 856, + BlockMuddyMangroveRootsBreak = 857, + BlockMuddyMangroveRootsFall = 858, + BlockMuddyMangroveRootsHit = 859, + BlockMuddyMangroveRootsPlace = 860, + BlockMuddyMangroveRootsStep = 861, + BlockNetherBricksBreak = 916, + BlockNetherBricksFall = 920, + BlockNetherBricksHit = 919, + BlockNetherBricksPlace = 918, + BlockNetherBricksStep = 917, + BlockNetherGoldOreBreak = 1159, + BlockNetherGoldOreFall = 1160, + BlockNetherGoldOreHit = 1161, + BlockNetherGoldOrePlace = 1162, + BlockNetherGoldOreStep = 1163, + BlockNetherOreBreak = 1164, + BlockNetherOreFall = 1165, + BlockNetherOreHit = 1166, + BlockNetherOrePlace = 1167, + BlockNetherOreStep = 1168, + BlockNetherSproutsBreak = 954, + BlockNetherSproutsFall = 958, + BlockNetherSproutsHit = 957, + BlockNetherSproutsPlace = 956, + BlockNetherSproutsStep = 955, + BlockNetherWartBreak = 921, + BlockNetherWoodBreak = 923, + BlockNetherWoodFall = 924, + BlockNetherWoodHit = 925, + BlockNetherWoodPlace = 926, + BlockNetherWoodStep = 927, + BlockNetherWoodButtonClickOff = 932, + BlockNetherWoodButtonClickOn = 933, + BlockNetherWoodDoorClose = 928, + BlockNetherWoodDoorOpen = 929, + BlockNetherWoodFenceGateClose = 936, + BlockNetherWoodFenceGateOpen = 937, + BlockNetherWoodHangingSignBreak = 665, + BlockNetherWoodHangingSignFall = 666, + BlockNetherWoodHangingSignHit = 667, + BlockNetherWoodHangingSignPlace = 668, + BlockNetherWoodHangingSignStep = 664, + BlockNetherWoodPressurePlateClickOff = 934, + BlockNetherWoodPressurePlateClickOn = 935, + BlockNetherWoodTrapdoorClose = 930, + BlockNetherWoodTrapdoorOpen = 931, + BlockNetheriteBlockBreak = 974, + BlockNetheriteBlockFall = 978, + BlockNetheriteBlockHit = 977, + BlockNetheriteBlockPlace = 976, + BlockNetheriteBlockStep = 975, + BlockNetherrackBreak = 979, + BlockNetherrackFall = 983, + BlockNetherrackHit = 982, + BlockNetherrackPlace = 981, + BlockNetherrackStep = 980, + BlockNoteBlockBanjo = 999, + BlockNoteBlockBasedrum = 984, + BlockNoteBlockBass = 985, + BlockNoteBlockBell = 986, + BlockNoteBlockBit = 998, + BlockNoteBlockChime = 987, + BlockNoteBlockCowBell = 996, + BlockNoteBlockDidgeridoo = 997, + BlockNoteBlockFlute = 988, + BlockNoteBlockGuitar = 989, + BlockNoteBlockHarp = 990, + BlockNoteBlockHat = 991, + BlockNoteBlockImitateCreeper = 1002, + BlockNoteBlockImitateEnderDragon = 1003, + BlockNoteBlockImitatePiglin = 1005, + BlockNoteBlockImitateSkeleton = 1001, + BlockNoteBlockImitateWitherSkeleton = 1004, + BlockNoteBlockImitateZombie = 1000, + BlockNoteBlockIronXylophone = 995, + BlockNoteBlockPling = 992, + BlockNoteBlockSnare = 993, + BlockNoteBlockXylophone = 994, + BlockNyliumBreak = 949, + BlockNyliumFall = 953, + BlockNyliumHit = 952, + BlockNyliumPlace = 951, + BlockNyliumStep = 950, + BlockPackedMudBreak = 939, + BlockPackedMudFall = 940, + BlockPackedMudHit = 941, + BlockPackedMudPlace = 942, + BlockPackedMudStep = 943, + BlockPinkPetalsBreak = 837, + BlockPinkPetalsFall = 838, + BlockPinkPetalsHit = 839, + BlockPinkPetalsPlace = 840, + BlockPinkPetalsStep = 841, + BlockPistonContract = 1095, + BlockPistonExtend = 1096, + BlockPointedDripstoneBreak = 434, + BlockPointedDripstoneDripLava = 440, + BlockPointedDripstoneDripLavaIntoCauldron = 442, + BlockPointedDripstoneDripWater = 441, + BlockPointedDripstoneDripWaterIntoCauldron = 443, + BlockPointedDripstoneFall = 438, + BlockPointedDripstoneHit = 437, + BlockPointedDripstoneLand = 439, + BlockPointedDripstonePlace = 436, + BlockPointedDripstoneStep = 435, + BlockPolishedDeepslateBreak = 1124, + BlockPolishedDeepslateFall = 1125, + BlockPolishedDeepslateHit = 1126, + BlockPolishedDeepslatePlace = 1127, + BlockPolishedDeepslateStep = 1128, + BlockPolishedTuffBreak = 1408, + BlockPolishedTuffFall = 1409, + BlockPolishedTuffHit = 1410, + BlockPolishedTuffPlace = 1411, + BlockPolishedTuffStep = 1412, + BlockPortalAmbient = 1129, + BlockPortalTravel = 1130, + BlockPortalTrigger = 1131, + BlockPowderSnowBreak = 1132, + BlockPowderSnowFall = 1133, + BlockPowderSnowHit = 1134, + BlockPowderSnowPlace = 1135, + BlockPowderSnowStep = 1136, + BlockPumpkinCarve = 1144, + BlockRedstoneTorchBurnout = 1169, + BlockRespawnAnchorAmbient = 1170, + BlockRespawnAnchorCharge = 1171, + BlockRespawnAnchorDeplete = 1172, + BlockRespawnAnchorSetSpawn = 1173, + BlockRootedDirtBreak = 1174, + BlockRootedDirtFall = 1175, + BlockRootedDirtHit = 1176, + BlockRootedDirtPlace = 1177, + BlockRootedDirtStep = 1178, + BlockRootsBreak = 566, + BlockRootsFall = 570, + BlockRootsHit = 569, + BlockRootsPlace = 568, + BlockRootsStep = 567, + BlockSandBreak = 1183, + BlockSandFall = 1184, + BlockSandHit = 1185, + BlockSandPlace = 1186, + BlockSandStep = 1187, + BlockScaffoldingBreak = 1188, + BlockScaffoldingFall = 1189, + BlockScaffoldingHit = 1190, + BlockScaffoldingPlace = 1191, + BlockScaffoldingStep = 1192, + BlockSculkBreak = 1195, + BlockSculkCharge = 1194, + BlockSculkFall = 1196, + BlockSculkHit = 1197, + BlockSculkPlace = 1198, + BlockSculkSpread = 1193, + BlockSculkStep = 1199, + BlockSculkCatalystBloom = 1200, + BlockSculkCatalystBreak = 1201, + BlockSculkCatalystFall = 1202, + BlockSculkCatalystHit = 1203, + BlockSculkCatalystPlace = 1204, + BlockSculkCatalystStep = 1205, + BlockSculkSensorBreak = 1208, + BlockSculkSensorClicking = 1206, + BlockSculkSensorClickingStop = 1207, + BlockSculkSensorFall = 1209, + BlockSculkSensorHit = 1210, + BlockSculkSensorPlace = 1211, + BlockSculkSensorStep = 1212, + BlockSculkShriekerBreak = 1213, + BlockSculkShriekerFall = 1214, + BlockSculkShriekerHit = 1215, + BlockSculkShriekerPlace = 1216, + BlockSculkShriekerShriek = 1217, + BlockSculkShriekerStep = 1218, + BlockSculkVeinBreak = 1219, + BlockSculkVeinFall = 1220, + BlockSculkVeinHit = 1221, + BlockSculkVeinPlace = 1222, + BlockSculkVeinStep = 1223, + BlockShroomlightBreak = 1231, + BlockShroomlightFall = 1235, + BlockShroomlightHit = 1234, + BlockShroomlightPlace = 1233, + BlockShroomlightStep = 1232, + BlockShulkerBoxClose = 1238, + BlockShulkerBoxOpen = 1239, + BlockSignWaxedInteractFail = 1512, + BlockSlimeBlockBreak = 1272, + BlockSlimeBlockFall = 1273, + BlockSlimeBlockHit = 1274, + BlockSlimeBlockPlace = 1275, + BlockSlimeBlockStep = 1276, + BlockSmallAmethystBudBreak = 1277, + BlockSmallAmethystBudPlace = 1278, + BlockSmallDripleafBreak = 1279, + BlockSmallDripleafFall = 1280, + BlockSmallDripleafHit = 1281, + BlockSmallDripleafPlace = 1282, + BlockSmallDripleafStep = 1283, + BlockSmithingTableUse = 1313, + BlockSmokerSmoke = 1314, + BlockSnifferEggCrack = 1328, + BlockSnifferEggHatch = 1329, + BlockSnifferEggPlop = 1327, + BlockSnowBreak = 1331, + BlockSnowFall = 1332, + BlockSnowHit = 1338, + BlockSnowPlace = 1339, + BlockSnowStep = 1340, + BlockSoulSandBreak = 1284, + BlockSoulSandFall = 1288, + BlockSoulSandHit = 1287, + BlockSoulSandPlace = 1286, + BlockSoulSandStep = 1285, + BlockSoulSoilBreak = 1289, + BlockSoulSoilFall = 1293, + BlockSoulSoilHit = 1292, + BlockSoulSoilPlace = 1291, + BlockSoulSoilStep = 1290, + BlockSpongeAbsorb = 1352, + BlockSpongeBreak = 1347, + BlockSpongeFall = 1348, + BlockSpongeHit = 1349, + BlockSpongePlace = 1350, + BlockSpongeStep = 1351, + BlockSporeBlossomBreak = 1295, + BlockSporeBlossomFall = 1296, + BlockSporeBlossomHit = 1297, + BlockSporeBlossomPlace = 1298, + BlockSporeBlossomStep = 1299, + BlockStemBreak = 944, + BlockStemFall = 948, + BlockStemHit = 947, + BlockStemPlace = 946, + BlockStemStep = 945, + BlockStoneBreak = 1359, + BlockStoneFall = 1362, + BlockStoneHit = 1363, + BlockStonePlace = 1364, + BlockStoneStep = 1367, + BlockStoneButtonClickOff = 1360, + BlockStoneButtonClickOn = 1361, + BlockStonePressurePlateClickOff = 1365, + BlockStonePressurePlateClickOn = 1366, + BlockSuspiciousGravelBreak = 542, + BlockSuspiciousGravelFall = 546, + BlockSuspiciousGravelHit = 545, + BlockSuspiciousGravelPlace = 544, + BlockSuspiciousGravelStep = 543, + BlockSuspiciousSandBreak = 537, + BlockSuspiciousSandFall = 541, + BlockSuspiciousSandHit = 540, + BlockSuspiciousSandPlace = 539, + BlockSuspiciousSandStep = 538, + BlockSweetBerryBushBreak = 1372, + BlockSweetBerryBushPickBerries = 1374, + BlockSweetBerryBushPlace = 1373, + BlockTrialSpawnerAboutToSpawnItem = 680, + BlockTrialSpawnerAmbient = 685, + BlockTrialSpawnerAmbientCharged = 686, + BlockTrialSpawnerBreak = 674, + BlockTrialSpawnerChargeActivate = 684, + BlockTrialSpawnerCloseShutter = 688, + BlockTrialSpawnerDetectPlayer = 683, + BlockTrialSpawnerEjectItem = 689, + BlockTrialSpawnerFall = 678, + BlockTrialSpawnerHit = 677, + BlockTrialSpawnerOpenShutter = 687, + BlockTrialSpawnerPlace = 676, + BlockTrialSpawnerSpawnItem = 681, + BlockTrialSpawnerSpawnItemBegin = 682, + BlockTrialSpawnerSpawnMob = 679, + BlockTrialSpawnerStep = 675, + BlockTripwireAttach = 1390, + BlockTripwireClickOff = 1391, + BlockTripwireClickOn = 1392, + BlockTripwireDetach = 1393, + BlockTuffBreak = 1398, + BlockTuffFall = 1402, + BlockTuffHit = 1401, + BlockTuffPlace = 1400, + BlockTuffStep = 1399, + BlockTuffBricksBreak = 1403, + BlockTuffBricksFall = 1404, + BlockTuffBricksHit = 1405, + BlockTuffBricksPlace = 1406, + BlockTuffBricksStep = 1407, + BlockVaultActivate = 1434, + BlockVaultAmbient = 1435, + BlockVaultBreak = 1436, + BlockVaultCloseShutter = 1437, + BlockVaultDeactivate = 1438, + BlockVaultEjectItem = 1439, + BlockVaultFall = 1440, + BlockVaultHit = 1441, + BlockVaultInsertItem = 1442, + BlockVaultInsertItemFail = 1443, + BlockVaultOpenShutter = 1444, + BlockVaultPlace = 1445, + BlockVaultStep = 1446, + BlockVineBreak = 1475, + BlockVineFall = 1476, + BlockVineHit = 1477, + BlockVinePlace = 1478, + BlockVineStep = 1479, + BlockWartBlockBreak = 969, + BlockWartBlockFall = 973, + BlockWartBlockHit = 972, + BlockWartBlockPlace = 971, + BlockWartBlockStep = 970, + BlockWaterAmbient = 1513, + BlockWeepingVinesBreak = 964, + BlockWeepingVinesFall = 968, + BlockWeepingVinesHit = 967, + BlockWeepingVinesPlace = 966, + BlockWeepingVinesStep = 965, + BlockWetGrassBreak = 1516, + BlockWetGrassFall = 1517, + BlockWetGrassHit = 1518, + BlockWetGrassPlace = 1519, + BlockWetGrassStep = 1520, + BlockWetSpongeBreak = 1521, + BlockWetSpongeDries = 1522, + BlockWetSpongeFall = 1523, + BlockWetSpongeHit = 1524, + BlockWetSpongePlace = 1525, + BlockWetSpongeStep = 1526, + BlockWoodBreak = 1566, + BlockWoodFall = 1567, + BlockWoodHit = 1568, + BlockWoodPlace = 1569, + BlockWoodStep = 1570, + BlockWoodenButtonClickOff = 1562, + BlockWoodenButtonClickOn = 1563, + BlockWoodenDoorClose = 1558, + BlockWoodenDoorOpen = 1559, + BlockWoodenPressurePlateClickOff = 1564, + BlockWoodenPressurePlateClickOn = 1565, + BlockWoodenTrapdoorClose = 1560, + BlockWoodenTrapdoorOpen = 1561, + BlockWoolBreak = 1571, + BlockWoolFall = 1572, + BlockWoolHit = 1573, + BlockWoolPlace = 1574, + BlockWoolStep = 1575, + EnchantThornsHit = 1379, EntityAllayAmbientWithItem = 1, EntityAllayAmbientWithoutItem = 2, EntityAllayDeath = 3, @@ -730,816 +759,855 @@ public enum SoundId : int EntityAllayItemGiven = 5, EntityAllayItemTaken = 6, EntityAllayItemThrown = 7, - EntityArmorStandBreak = 64, - EntityArmorStandFall = 65, - EntityArmorStandHit = 66, - EntityArmorStandPlace = 67, - EntityArrowHit = 68, - EntityArrowHitPlayer = 69, - EntityArrowShoot = 70, - EntityAxolotlAttack = 74, - EntityAxolotlDeath = 75, - EntityAxolotlHurt = 76, - EntityAxolotlIdleAir = 77, - EntityAxolotlIdleWater = 78, - EntityAxolotlSplash = 79, - EntityAxolotlSwim = 80, - EntityBatAmbient = 121, - EntityBatDeath = 122, - EntityBatHurt = 123, - EntityBatLoop = 124, - EntityBatTakeoff = 125, - EntityBeeDeath = 130, - EntityBeeHurt = 131, - EntityBeeLoop = 133, - EntityBeeLoopAggressive = 132, - EntityBeePollinate = 135, - EntityBeeSting = 134, - EntityBlazeAmbient = 148, - EntityBlazeBurn = 149, - EntityBlazeDeath = 150, - EntityBlazeHurt = 151, - EntityBlazeShoot = 152, - EntityBoatPaddleLand = 153, - EntityBoatPaddleWater = 154, - 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, - ItemArmorEquipGeneric = 58, - ItemArmorEquipGold = 59, - ItemArmorEquipIron = 60, - ItemArmorEquipLeather = 61, - ItemArmorEquipNetherite = 62, - ItemArmorEquipTurtle = 63, - ItemAxeScrape = 72, - ItemAxeStrip = 71, - ItemAxeWaxOff = 73, - ItemBoneMealUse = 160, - ItemBookPageTurn = 161, - ItemBookPut = 162, - ItemBottleEmpty = 164, - ItemBottleFill = 165, - ItemBottleFillDragonbreath = 166, - 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, + EntityArmadilloAmbient = 58, + EntityArmadilloBrush = 67, + EntityArmadilloDeath = 60, + EntityArmadilloEat = 55, + EntityArmadilloHurt = 56, + EntityArmadilloHurtReduced = 57, + EntityArmadilloLand = 62, + EntityArmadilloPeek = 65, + EntityArmadilloRoll = 61, + EntityArmadilloScuteDrop = 63, + EntityArmadilloStep = 59, + EntityArmadilloUnrollFinish = 64, + EntityArmadilloUnrollStart = 66, + EntityArmorStandBreak = 79, + EntityArmorStandFall = 80, + EntityArmorStandHit = 81, + EntityArmorStandPlace = 82, + EntityArrowHit = 83, + EntityArrowHitPlayer = 84, + EntityArrowShoot = 85, + EntityAxolotlAttack = 89, + EntityAxolotlDeath = 90, + EntityAxolotlHurt = 91, + EntityAxolotlIdleAir = 92, + EntityAxolotlIdleWater = 93, + EntityAxolotlSplash = 94, + EntityAxolotlSwim = 95, + EntityBatAmbient = 136, + EntityBatDeath = 137, + EntityBatHurt = 138, + EntityBatLoop = 139, + EntityBatTakeoff = 140, + EntityBeeDeath = 145, + EntityBeeHurt = 146, + EntityBeeLoop = 148, + EntityBeeLoopAggressive = 147, + EntityBeePollinate = 150, + EntityBeeSting = 149, + EntityBlazeAmbient = 163, + EntityBlazeBurn = 164, + EntityBlazeDeath = 165, + EntityBlazeHurt = 166, + EntityBlazeShoot = 167, + EntityBoatPaddleLand = 168, + EntityBoatPaddleWater = 169, + EntityBoggedAmbient = 170, + EntityBoggedDeath = 171, + EntityBoggedHurt = 172, + EntityBoggedShear = 173, + EntityBoggedStep = 174, + EntityBreezeCharge = 187, + EntityBreezeDeath = 196, + EntityBreezeDeflect = 188, + EntityBreezeHurt = 197, + EntityBreezeIdleAir = 191, + EntityBreezeIdleGround = 190, + EntityBreezeInhale = 189, + EntityBreezeJump = 193, + EntityBreezeLand = 194, + EntityBreezeShoot = 192, + EntityBreezeSlide = 195, + EntityBreezeWhirl = 198, + EntityBreezeWindBurst = 199, + EntityCamelAmbient = 232, + EntityCamelDash = 233, + EntityCamelDashReady = 234, + EntityCamelDeath = 235, + EntityCamelEat = 236, + EntityCamelHurt = 237, + EntityCamelSaddle = 238, + EntityCamelSit = 239, + EntityCamelStand = 240, + EntityCamelStep = 241, + EntityCamelStepSand = 242, + EntityCatAmbient = 251, + EntityCatBegForFood = 256, + EntityCatDeath = 253, + EntityCatEat = 254, + EntityCatHiss = 255, + EntityCatHurt = 257, + EntityCatPurr = 258, + EntityCatPurreow = 259, + EntityCatStrayAmbient = 252, + EntityChickenAmbient = 304, + EntityChickenDeath = 305, + EntityChickenEgg = 306, + EntityChickenHurt = 307, + EntityChickenStep = 308, + EntityCodAmbient = 326, + EntityCodDeath = 327, + EntityCodFlop = 328, + EntityCodHurt = 329, + EntityCowAmbient = 366, + EntityCowDeath = 367, + EntityCowHurt = 368, + EntityCowMilk = 369, + EntityCowStep = 370, + EntityCreeperDeath = 373, + EntityCreeperHurt = 374, + EntityCreeperPrimed = 375, + EntityDolphinAmbient = 412, + EntityDolphinAmbientWater = 413, + EntityDolphinAttack = 414, + EntityDolphinDeath = 415, + EntityDolphinEat = 416, + EntityDolphinHurt = 417, + EntityDolphinJump = 418, + EntityDolphinPlay = 419, + EntityDolphinSplash = 420, + EntityDolphinSwim = 421, + EntityDonkeyAmbient = 422, + EntityDonkeyAngry = 423, + EntityDonkeyChest = 424, + EntityDonkeyDeath = 425, + EntityDonkeyEat = 426, + EntityDonkeyHurt = 427, + EntityDonkeyJump = 428, + EntityDragonFireballExplode = 471, + EntityDrownedAmbient = 446, + EntityDrownedAmbientWater = 447, + EntityDrownedDeath = 448, + EntityDrownedDeathWater = 449, + EntityDrownedHurt = 450, + EntityDrownedHurtWater = 451, + EntityDrownedShoot = 452, + EntityDrownedStep = 453, + EntityDrownedSwim = 454, + EntityEggThrow = 456, + EntityElderGuardianAmbient = 457, + EntityElderGuardianAmbientLand = 458, + EntityElderGuardianCurse = 459, + EntityElderGuardianDeath = 460, + EntityElderGuardianDeathLand = 461, + EntityElderGuardianFlop = 462, + EntityElderGuardianHurt = 463, + EntityElderGuardianHurtLand = 464, + EntityEnderDragonAmbient = 469, + EntityEnderDragonDeath = 470, + EntityEnderDragonFlap = 472, + EntityEnderDragonGrowl = 473, + EntityEnderDragonHurt = 474, + EntityEnderDragonShoot = 475, + EntityEnderEyeDeath = 476, + EntityEnderEyeLaunch = 477, + EntityEnderPearlThrow = 488, + EntityEndermanAmbient = 478, + EntityEndermanDeath = 479, + EntityEndermanHurt = 480, + EntityEndermanScream = 481, + EntityEndermanStare = 482, + EntityEndermanTeleport = 483, + EntityEndermiteAmbient = 484, + EntityEndermiteDeath = 485, + EntityEndermiteHurt = 486, + EntityEndermiteStep = 487, + EntityEvokerAmbient = 492, + EntityEvokerCastSpell = 493, + EntityEvokerCelebrate = 494, + EntityEvokerDeath = 495, + EntityEvokerHurt = 497, + EntityEvokerPrepareAttack = 498, + EntityEvokerPrepareSummon = 499, + EntityEvokerPrepareWololo = 500, + EntityEvokerFangsAttack = 496, + EntityExperienceBottleThrow = 501, + EntityExperienceOrbPickup = 502, + EntityFireworkRocketBlast = 506, + EntityFireworkRocketBlastFar = 507, + EntityFireworkRocketLargeBlast = 508, + EntityFireworkRocketLargeBlastFar = 509, + EntityFireworkRocketLaunch = 510, + EntityFireworkRocketShoot = 511, + EntityFireworkRocketTwinkle = 512, + EntityFireworkRocketTwinkleFar = 513, + EntityFishSwim = 516, + EntityFishingBobberRetrieve = 517, + EntityFishingBobberSplash = 518, + EntityFishingBobberThrow = 519, + EntityFoxAggro = 526, + EntityFoxAmbient = 527, + EntityFoxBite = 528, + EntityFoxDeath = 529, + EntityFoxEat = 530, + EntityFoxHurt = 531, + EntityFoxScreech = 532, + EntityFoxSleep = 533, + EntityFoxSniff = 534, + EntityFoxSpit = 535, + EntityFoxTeleport = 536, + EntityFrogAmbient = 558, + EntityFrogDeath = 559, + EntityFrogEat = 560, + EntityFrogHurt = 561, + EntityFrogLaySpawn = 562, + EntityFrogLongJump = 563, + EntityFrogStep = 564, + EntityFrogTongue = 565, + EntityGenericBigFall = 572, + EntityGenericBurn = 573, + EntityGenericDeath = 574, + EntityGenericDrink = 575, + EntityGenericEat = 576, + EntityGenericExplode = 577, + EntityGenericExtinguishFire = 578, + EntityGenericHurt = 579, + EntityGenericSmallFall = 580, + EntityGenericSplash = 581, + EntityGenericSwim = 582, + EntityGhastAmbient = 583, + EntityGhastDeath = 584, + EntityGhastHurt = 585, + EntityGhastScream = 586, + EntityGhastShoot = 587, + EntityGhastWarn = 588, + EntityGlowItemFrameAddItem = 600, + EntityGlowItemFrameBreak = 601, + EntityGlowItemFramePlace = 602, + EntityGlowItemFrameRemoveItem = 603, + EntityGlowItemFrameRotateItem = 604, + EntityGlowSquidAmbient = 605, + EntityGlowSquidDeath = 606, + EntityGlowSquidHurt = 607, + EntityGlowSquidSquirt = 608, + EntityGoatAmbient = 609, + EntityGoatDeath = 610, + EntityGoatEat = 611, + EntityGoatHornBreak = 617, + EntityGoatHurt = 612, + EntityGoatLongJump = 613, + EntityGoatMilk = 614, + EntityGoatPrepareRam = 615, + EntityGoatRamImpact = 616, + EntityGoatScreamingAmbient = 619, + EntityGoatScreamingDeath = 620, + EntityGoatScreamingEat = 621, + EntityGoatScreamingHornBreak = 627, + EntityGoatScreamingHurt = 622, + EntityGoatScreamingLongJump = 623, + EntityGoatScreamingMilk = 624, + EntityGoatScreamingPrepareRam = 625, + EntityGoatScreamingRamImpact = 626, + EntityGoatStep = 628, + EntityGuardianAmbient = 641, + EntityGuardianAmbientLand = 642, + EntityGuardianAttack = 643, + EntityGuardianDeath = 644, + EntityGuardianDeathLand = 645, + EntityGuardianFlop = 646, + EntityGuardianHurt = 647, + EntityGuardianHurtLand = 648, + EntityHoglinAmbient = 691, + EntityHoglinAngry = 692, + EntityHoglinAttack = 693, + EntityHoglinConvertedToZombified = 694, + EntityHoglinDeath = 695, + EntityHoglinHurt = 696, + EntityHoglinRetreat = 697, + EntityHoglinStep = 698, + EntityHorseAmbient = 715, + EntityHorseAngry = 716, + EntityHorseArmor = 717, + EntityHorseBreathe = 718, + EntityHorseDeath = 719, + EntityHorseEat = 720, + EntityHorseGallop = 721, + EntityHorseHurt = 722, + EntityHorseJump = 723, + EntityHorseLand = 724, + EntityHorseSaddle = 725, + EntityHorseStep = 726, + EntityHorseStepWood = 727, + EntityHostileBigFall = 728, + EntityHostileDeath = 729, + EntityHostileHurt = 730, + EntityHostileSmallFall = 731, + EntityHostileSplash = 732, + EntityHostileSwim = 733, + EntityHuskAmbient = 734, + EntityHuskConvertedToZombie = 735, + EntityHuskDeath = 736, + EntityHuskHurt = 737, + EntityHuskStep = 738, + EntityIllusionerAmbient = 739, + EntityIllusionerCastSpell = 740, + EntityIllusionerDeath = 741, + EntityIllusionerHurt = 742, + EntityIllusionerMirrorMove = 743, + EntityIllusionerPrepareBlindness = 744, + EntityIllusionerPrepareMirror = 745, + EntityIronGolemAttack = 749, + EntityIronGolemDamage = 750, + EntityIronGolemDeath = 751, + EntityIronGolemHurt = 752, + EntityIronGolemRepair = 753, + EntityIronGolemStep = 754, + EntityItemBreak = 762, + EntityItemPickup = 763, + EntityItemFrameAddItem = 757, + EntityItemFrameBreak = 758, + EntityItemFramePlace = 759, + EntityItemFrameRemoveItem = 760, + EntityItemFrameRotateItem = 761, + EntityLeashKnotBreak = 779, + EntityLeashKnotPlace = 780, + EntityLightningBoltImpact = 782, + EntityLightningBoltThunder = 783, + EntityLingeringPotionThrow = 784, + EntityLlamaAmbient = 785, + EntityLlamaAngry = 786, + EntityLlamaChest = 787, + EntityLlamaDeath = 788, + EntityLlamaEat = 789, + EntityLlamaHurt = 790, + EntityLlamaSpit = 791, + EntityLlamaStep = 792, + EntityLlamaSwag = 793, + EntityMagmaCubeDeath = 804, + EntityMagmaCubeDeathSmall = 794, + EntityMagmaCubeHurt = 805, + EntityMagmaCubeHurtSmall = 806, + EntityMagmaCubeJump = 807, + EntityMagmaCubeSquish = 808, + EntityMagmaCubeSquishSmall = 809, + EntityMinecartInside = 825, + EntityMinecartInsideUnderwater = 824, + EntityMinecartRiding = 826, + EntityMooshroomConvert = 827, + EntityMooshroomEat = 828, + EntityMooshroomMilk = 829, + EntityMooshroomShear = 831, + EntityMooshroomSuspiciousMilk = 830, + EntityMuleAmbient = 862, + EntityMuleAngry = 863, + EntityMuleChest = 864, + EntityMuleDeath = 865, + EntityMuleEat = 866, + EntityMuleHurt = 867, + EntityMuleJump = 868, + EntityOcelotAmbient = 1007, + EntityOcelotDeath = 1008, + EntityOcelotHurt = 1006, + EntityPaintingBreak = 1010, + EntityPaintingPlace = 1011, + EntityPandaAggressiveAmbient = 1019, + EntityPandaAmbient = 1014, + EntityPandaBite = 1022, + EntityPandaCantBreed = 1018, + EntityPandaDeath = 1015, + EntityPandaEat = 1016, + EntityPandaHurt = 1021, + EntityPandaPreSneeze = 1012, + EntityPandaSneeze = 1013, + EntityPandaStep = 1017, + EntityPandaWorriedAmbient = 1020, + EntityParrotAmbient = 1023, + EntityParrotDeath = 1024, + EntityParrotEat = 1025, + EntityParrotFly = 1026, + EntityParrotHurt = 1027, + EntityParrotImitateBlaze = 1028, + EntityParrotImitateBogged = 1029, + EntityParrotImitateBreeze = 1030, + EntityParrotImitateCreeper = 1031, + EntityParrotImitateDrowned = 1032, + EntityParrotImitateElderGuardian = 1033, + EntityParrotImitateEnderDragon = 1034, + EntityParrotImitateEndermite = 1035, + EntityParrotImitateEvoker = 1036, + EntityParrotImitateGhast = 1037, + EntityParrotImitateGuardian = 1038, + EntityParrotImitateHoglin = 1039, + EntityParrotImitateHusk = 1040, + EntityParrotImitateIllusioner = 1041, + EntityParrotImitateMagmaCube = 1042, + EntityParrotImitatePhantom = 1043, + EntityParrotImitatePiglin = 1044, + EntityParrotImitatePiglinBrute = 1045, + EntityParrotImitatePillager = 1046, + EntityParrotImitateRavager = 1047, + EntityParrotImitateShulker = 1048, + EntityParrotImitateSilverfish = 1049, + EntityParrotImitateSkeleton = 1050, + EntityParrotImitateSlime = 1051, + EntityParrotImitateSpider = 1052, + EntityParrotImitateStray = 1053, + EntityParrotImitateVex = 1054, + EntityParrotImitateVindicator = 1055, + EntityParrotImitateWarden = 1056, + EntityParrotImitateWitch = 1057, + EntityParrotImitateWither = 1058, + EntityParrotImitateWitherSkeleton = 1059, + EntityParrotImitateZoglin = 1060, + EntityParrotImitateZombie = 1061, + EntityParrotImitateZombieVillager = 1062, + EntityParrotStep = 1063, + EntityPhantomAmbient = 1064, + EntityPhantomBite = 1065, + EntityPhantomDeath = 1066, + EntityPhantomFlap = 1067, + EntityPhantomHurt = 1068, + EntityPhantomSwoop = 1069, + EntityPigAmbient = 1070, + EntityPigDeath = 1071, + EntityPigHurt = 1072, + EntityPigSaddle = 1073, + EntityPigStep = 1074, + EntityPiglinAdmiringItem = 1075, + EntityPiglinAmbient = 1076, + EntityPiglinAngry = 1077, + EntityPiglinCelebrate = 1078, + EntityPiglinConvertedToZombified = 1084, + EntityPiglinDeath = 1079, + EntityPiglinHurt = 1081, + EntityPiglinJealous = 1080, + EntityPiglinRetreat = 1082, + EntityPiglinStep = 1083, + EntityPiglinBruteAmbient = 1085, + EntityPiglinBruteAngry = 1086, + EntityPiglinBruteConvertedToZombified = 1090, + EntityPiglinBruteDeath = 1087, + EntityPiglinBruteHurt = 1088, + EntityPiglinBruteStep = 1089, + EntityPillagerAmbient = 1091, + EntityPillagerCelebrate = 1092, + EntityPillagerDeath = 1093, + EntityPillagerHurt = 1094, + EntityPlayerAttackCrit = 1097, + EntityPlayerAttackKnockback = 1098, + EntityPlayerAttackNodamage = 1099, + EntityPlayerAttackStrong = 1100, + EntityPlayerAttackSweep = 1101, + EntityPlayerAttackWeak = 1102, + EntityPlayerBigFall = 1103, + EntityPlayerBreath = 1104, + EntityPlayerBurp = 1105, + EntityPlayerDeath = 1106, + EntityPlayerHurt = 1107, + EntityPlayerHurtDrown = 1108, + EntityPlayerHurtFreeze = 1109, + EntityPlayerHurtOnFire = 1110, + EntityPlayerHurtSweetBerryBush = 1111, + EntityPlayerLevelup = 1112, + EntityPlayerSmallFall = 1113, + EntityPlayerSplash = 1114, + EntityPlayerSplashHighSpeed = 1115, + EntityPlayerSwim = 1116, + EntityPlayerTeleport = 1117, + EntityPolarBearAmbient = 1118, + EntityPolarBearAmbientBaby = 1119, + EntityPolarBearDeath = 1120, + EntityPolarBearHurt = 1121, + EntityPolarBearStep = 1122, + EntityPolarBearWarning = 1123, + EntityPufferFishAmbient = 1137, + EntityPufferFishBlowOut = 1138, + EntityPufferFishBlowUp = 1139, + EntityPufferFishDeath = 1140, + EntityPufferFishFlop = 1141, + EntityPufferFishHurt = 1142, + EntityPufferFishSting = 1143, + EntityRabbitAmbient = 1145, + EntityRabbitAttack = 1146, + EntityRabbitDeath = 1147, + EntityRabbitHurt = 1148, + EntityRabbitJump = 1149, + EntityRavagerAmbient = 1151, + EntityRavagerAttack = 1152, + EntityRavagerCelebrate = 1153, + EntityRavagerDeath = 1154, + EntityRavagerHurt = 1155, + EntityRavagerRoar = 1158, + EntityRavagerStep = 1156, + EntityRavagerStunned = 1157, + EntitySalmonAmbient = 1179, + EntitySalmonDeath = 1180, + EntitySalmonFlop = 1181, + EntitySalmonHurt = 1182, + EntitySheepAmbient = 1224, + EntitySheepDeath = 1225, + EntitySheepHurt = 1226, + EntitySheepShear = 1227, + EntitySheepStep = 1228, + EntityShulkerAmbient = 1237, + EntityShulkerClose = 1242, + EntityShulkerDeath = 1243, + EntityShulkerHurt = 1244, + EntityShulkerHurtClosed = 1245, + EntityShulkerOpen = 1246, + EntityShulkerShoot = 1247, + EntityShulkerTeleport = 1248, + EntityShulkerBulletHit = 1240, + EntityShulkerBulletHurt = 1241, + EntitySilverfishAmbient = 1249, + EntitySilverfishDeath = 1250, + EntitySilverfishHurt = 1251, + EntitySilverfishStep = 1252, + EntitySkeletonAmbient = 1253, + EntitySkeletonConvertedToStray = 1254, + EntitySkeletonDeath = 1255, + EntitySkeletonHurt = 1264, + EntitySkeletonShoot = 1265, + EntitySkeletonStep = 1266, + EntitySkeletonHorseAmbient = 1256, + EntitySkeletonHorseAmbientWater = 1260, + EntitySkeletonHorseDeath = 1257, + EntitySkeletonHorseGallopWater = 1261, + EntitySkeletonHorseHurt = 1258, + EntitySkeletonHorseJumpWater = 1262, + EntitySkeletonHorseStepWater = 1263, + EntitySkeletonHorseSwim = 1259, + EntitySlimeAttack = 1267, + EntitySlimeDeath = 1268, + EntitySlimeDeathSmall = 1309, + EntitySlimeHurt = 1269, + EntitySlimeHurtSmall = 1310, + EntitySlimeJump = 1270, + EntitySlimeJumpSmall = 1311, + EntitySlimeSquish = 1271, + EntitySlimeSquishSmall = 1312, + EntitySnifferDeath = 1319, + EntitySnifferDigging = 1324, + EntitySnifferDiggingStop = 1325, + EntitySnifferDropSeed = 1320, + EntitySnifferEat = 1316, + EntitySnifferHappy = 1326, + EntitySnifferHurt = 1318, + EntitySnifferIdle = 1317, + EntitySnifferScenting = 1321, + EntitySnifferSearching = 1323, + EntitySnifferSniffing = 1322, + EntitySnifferStep = 1315, + EntitySnowGolemAmbient = 1333, + EntitySnowGolemDeath = 1334, + EntitySnowGolemHurt = 1335, + EntitySnowGolemShear = 1337, + EntitySnowGolemShoot = 1336, + EntitySnowballThrow = 1330, + EntitySpiderAmbient = 1341, + EntitySpiderDeath = 1342, + EntitySpiderHurt = 1343, + EntitySpiderStep = 1344, + EntitySplashPotionBreak = 1345, + EntitySplashPotionThrow = 1346, + EntitySquidAmbient = 1355, + EntitySquidDeath = 1356, + EntitySquidHurt = 1357, + EntitySquidSquirt = 1358, + EntityStrayAmbient = 1368, + EntityStrayDeath = 1369, + EntityStrayHurt = 1370, + EntityStrayStep = 1371, + EntityStriderAmbient = 1300, + EntityStriderDeath = 1303, + EntityStriderEat = 1307, + EntityStriderHappy = 1301, + EntityStriderHurt = 1304, + EntityStriderRetreat = 1302, + EntityStriderSaddle = 1308, + EntityStriderStep = 1305, + EntityStriderStepLava = 1306, + EntityTadpoleDeath = 1375, + EntityTadpoleFlop = 1376, + EntityTadpoleGrowUp = 1377, + EntityTadpoleHurt = 1378, + EntityTntPrimed = 1380, + EntityTropicalFishAmbient = 1394, + EntityTropicalFishDeath = 1395, + EntityTropicalFishFlop = 1396, + EntityTropicalFishHurt = 1397, + EntityTurtleAmbientLand = 1413, + EntityTurtleDeath = 1414, + EntityTurtleDeathBaby = 1415, + EntityTurtleEggBreak = 1416, + EntityTurtleEggCrack = 1417, + EntityTurtleEggHatch = 1418, + EntityTurtleHurt = 1419, + EntityTurtleHurtBaby = 1420, + EntityTurtleLayEgg = 1421, + EntityTurtleShamble = 1422, + EntityTurtleShambleBaby = 1423, + EntityTurtleSwim = 1424, + EntityVexAmbient = 1447, + EntityVexCharge = 1448, + EntityVexDeath = 1449, + EntityVexHurt = 1450, + EntityVillagerAmbient = 1451, + EntityVillagerCelebrate = 1452, + EntityVillagerDeath = 1453, + EntityVillagerHurt = 1454, + EntityVillagerNo = 1455, + EntityVillagerTrade = 1456, + EntityVillagerWorkArmorer = 1458, + EntityVillagerWorkButcher = 1459, + EntityVillagerWorkCartographer = 1460, + EntityVillagerWorkCleric = 1461, + EntityVillagerWorkFarmer = 1462, + EntityVillagerWorkFisherman = 1463, + EntityVillagerWorkFletcher = 1464, + EntityVillagerWorkLeatherworker = 1465, + EntityVillagerWorkLibrarian = 1466, + EntityVillagerWorkMason = 1467, + EntityVillagerWorkShepherd = 1468, + EntityVillagerWorkToolsmith = 1469, + EntityVillagerWorkWeaponsmith = 1470, + EntityVillagerYes = 1457, + EntityVindicatorAmbient = 1471, + EntityVindicatorCelebrate = 1472, + EntityVindicatorDeath = 1473, + EntityVindicatorHurt = 1474, + EntityWanderingTraderAmbient = 1481, + EntityWanderingTraderDeath = 1482, + EntityWanderingTraderDisappeared = 1483, + EntityWanderingTraderDrinkMilk = 1484, + EntityWanderingTraderDrinkPotion = 1485, + EntityWanderingTraderHurt = 1486, + EntityWanderingTraderNo = 1487, + EntityWanderingTraderReappeared = 1488, + EntityWanderingTraderTrade = 1489, + EntityWanderingTraderYes = 1490, + EntityWardenAgitated = 1491, + EntityWardenAmbient = 1492, + EntityWardenAngry = 1493, + EntityWardenAttackImpact = 1494, + EntityWardenDeath = 1495, + EntityWardenDig = 1496, + EntityWardenEmerge = 1497, + EntityWardenHeartbeat = 1498, + EntityWardenHurt = 1499, + EntityWardenListening = 1500, + EntityWardenListeningAngry = 1501, + EntityWardenNearbyClose = 1502, + EntityWardenNearbyCloser = 1503, + EntityWardenNearbyClosest = 1504, + EntityWardenRoar = 1505, + EntityWardenSniff = 1506, + EntityWardenSonicBoom = 1507, + EntityWardenSonicCharge = 1508, + EntityWardenStep = 1509, + EntityWardenTendrilClicks = 1510, + EntityWindChargeThrow = 1528, + EntityWindChargeWindBurst = 1527, + EntityWitchAmbient = 1529, + EntityWitchCelebrate = 1530, + EntityWitchDeath = 1531, + EntityWitchDrink = 1532, + EntityWitchHurt = 1533, + EntityWitchThrow = 1534, + EntityWitherAmbient = 1535, + EntityWitherBreakBlock = 1536, + EntityWitherDeath = 1537, + EntityWitherHurt = 1538, + EntityWitherShoot = 1539, + EntityWitherSpawn = 1544, + EntityWitherSkeletonAmbient = 1540, + EntityWitherSkeletonDeath = 1541, + EntityWitherSkeletonHurt = 1542, + EntityWitherSkeletonStep = 1543, + EntityWolfAmbient = 1549, + EntityWolfDeath = 1550, + EntityWolfGrowl = 1551, + EntityWolfHowl = 1552, + EntityWolfHurt = 1553, + EntityWolfPant = 1554, + EntityWolfShake = 1555, + EntityWolfStep = 1556, + EntityWolfWhine = 1557, + EntityZoglinAmbient = 1576, + EntityZoglinAngry = 1577, + EntityZoglinAttack = 1578, + EntityZoglinDeath = 1579, + EntityZoglinHurt = 1580, + EntityZoglinStep = 1581, + EntityZombieAmbient = 1582, + EntityZombieAttackIronDoor = 1584, + EntityZombieAttackWoodenDoor = 1583, + EntityZombieBreakWoodenDoor = 1585, + EntityZombieConvertedToDrowned = 1586, + EntityZombieDeath = 1587, + EntityZombieDestroyEgg = 1588, + EntityZombieHurt = 1592, + EntityZombieInfect = 1593, + EntityZombieStep = 1598, + EntityZombieHorseAmbient = 1589, + EntityZombieHorseDeath = 1590, + EntityZombieHorseHurt = 1591, + EntityZombieVillagerAmbient = 1599, + EntityZombieVillagerConverted = 1600, + EntityZombieVillagerCure = 1601, + EntityZombieVillagerDeath = 1602, + EntityZombieVillagerHurt = 1603, + EntityZombieVillagerStep = 1604, + EntityZombifiedPiglinAmbient = 1594, + EntityZombifiedPiglinAngry = 1595, + EntityZombifiedPiglinDeath = 1596, + EntityZombifiedPiglinHurt = 1597, + EventMobEffectBadOmen = 1605, + EventMobEffectRaidOmen = 1607, + EventMobEffectTrialOmen = 1606, + EventRaidHorn = 1150, + IntentionallyEmpty = 938, + ItemArmorEquipChain = 68, + ItemArmorEquipDiamond = 69, + ItemArmorEquipElytra = 70, + ItemArmorEquipGeneric = 71, + ItemArmorEquipGold = 72, + ItemArmorEquipIron = 73, + ItemArmorEquipLeather = 74, + ItemArmorEquipNetherite = 75, + ItemArmorEquipTurtle = 76, + ItemArmorEquipWolf = 77, + ItemArmorUnequipWolf = 78, + ItemAxeScrape = 87, + ItemAxeStrip = 86, + ItemAxeWaxOff = 88, + ItemBoneMealUse = 180, + ItemBookPageTurn = 181, + ItemBookPut = 182, + ItemBottleEmpty = 184, + ItemBottleFill = 185, + ItemBottleFillDragonbreath = 186, + ItemBrushBrushingGeneric = 201, + ItemBrushBrushingGravel = 203, + ItemBrushBrushingGravelComplete = 205, + ItemBrushBrushingSand = 202, + ItemBrushBrushingSandComplete = 204, + ItemBucketEmpty = 211, + ItemBucketEmptyAxolotl = 212, + ItemBucketEmptyFish = 213, + ItemBucketEmptyLava = 214, + ItemBucketEmptyPowderSnow = 215, + ItemBucketEmptyTadpole = 216, + ItemBucketFill = 217, + ItemBucketFillAxolotl = 218, + ItemBucketFillFish = 219, + ItemBucketFillLava = 220, + ItemBucketFillPowderSnow = 221, + ItemBucketFillTadpole = 222, + ItemBundleDropContents = 223, + ItemBundleInsert = 224, + ItemBundleRemoveOne = 225, + ItemChorusFruitTeleport = 320, + ItemCropPlant = 377, + ItemCrossbowHit = 378, + ItemCrossbowLoadingEnd = 379, + ItemCrossbowLoadingMiddle = 380, + ItemCrossbowLoadingStart = 381, + ItemCrossbowQuickCharge1 = 382, + ItemCrossbowQuickCharge2 = 383, + ItemCrossbowQuickCharge3 = 384, + ItemCrossbowShoot = 385, + ItemDyeUse = 455, + ItemElytraFlying = 465, + ItemFirechargeUse = 505, + ItemFlintandsteelUse = 520, + ItemGlowInkSacUse = 599, + ItemGoatHornPlay = 618, + ItemGoatHornSound0 = 707, + ItemGoatHornSound1 = 708, + ItemGoatHornSound2 = 709, + ItemGoatHornSound3 = 710, + ItemGoatHornSound4 = 711, + ItemGoatHornSound5 = 712, + ItemGoatHornSound6 = 713, + ItemGoatHornSound7 = 714, + ItemHoeTill = 690, + ItemHoneyBottleDrink = 706, + ItemHoneycombWaxOn = 705, + ItemInkSacUse = 746, + ItemLodestoneCompassLock = 800, + ItemMaceSmashAir = 801, + ItemMaceSmashGround = 802, + ItemMaceSmashGroundHeavy = 803, + ItemNetherWartPlant = 922, + ItemOminousBottleDispose = 1009, + ItemShieldBlock = 1229, + ItemShieldBreak = 1230, + ItemShovelFlatten = 1236, + ItemSpyglassStopUsing = 1354, + ItemSpyglassUse = 1353, + ItemTotemUse = 1381, + ItemTridentHit = 1382, + ItemTridentHitGround = 1383, + ItemTridentReturn = 1384, + ItemTridentRiptide1 = 1385, + ItemTridentRiptide2 = 1386, + ItemTridentRiptide3 = 1387, + ItemTridentThrow = 1388, + ItemTridentThunder = 1389, + ItemWolfArmorBreak = 1545, + ItemWolfArmorCrack = 1546, + ItemWolfArmorDamage = 1547, + ItemWolfArmorRepair = 1548, + MusicCreative = 869, + MusicCredits = 870, + MusicDragon = 887, + MusicEnd = 888, + MusicGame = 889, + MusicMenu = 890, + MusicNetherBasaltDeltas = 891, + MusicNetherCrimsonForest = 892, + MusicNetherNetherWastes = 903, + MusicNetherSoulSandValley = 906, + MusicNetherWarpedForest = 908, + MusicOverworldBadlands = 911, + MusicOverworldBambooJungle = 914, + MusicOverworldCherryGrove = 902, + MusicOverworldDeepDark = 893, + MusicOverworldDesert = 910, + MusicOverworldDripstoneCaves = 894, + MusicOverworldFlowerForest = 909, + MusicOverworldForest = 899, + MusicOverworldFrozenPeaks = 904, + MusicOverworldGrove = 895, + MusicOverworldJaggedPeaks = 896, + MusicOverworldJungle = 912, + MusicOverworldLushCaves = 897, + MusicOverworldMeadow = 901, + MusicOverworldOldGrowthTaiga = 900, + MusicOverworldSnowySlopes = 905, + MusicOverworldSparseJungle = 913, + MusicOverworldStonyPeaks = 907, + MusicOverworldSwamp = 898, + MusicUnderWater = 915, + MusicDisc11 = 872, + MusicDisc13 = 873, + MusicDisc5 = 871, + MusicDiscBlocks = 874, + MusicDiscCat = 875, + MusicDiscChirp = 876, + MusicDiscFar = 877, + MusicDiscMall = 878, + MusicDiscMellohi = 879, + MusicDiscOtherside = 885, + MusicDiscPigstep = 880, + MusicDiscRelic = 886, + MusicDiscStal = 881, + MusicDiscStrad = 882, + MusicDiscWait = 883, + MusicDiscWard = 884, + ParticleSoulEscape = 1294, + UiButtonClick = 1425, + UiCartographyTableTakeResult = 1428, + UiLoomSelectPattern = 1426, + UiLoomTakeResult = 1427, + UiStonecutterSelectRecipe = 1430, + UiStonecutterTakeResult = 1429, + UiToastChallengeComplete = 1431, + UiToastIn = 1432, + UiToastOut = 1433, + WeatherRain = 1514, + WeatherRainAbove = 1515, } diff --git a/Obsidian.API/_Interfaces/ICodec.cs b/Obsidian.API/_Interfaces/ICodec.cs index 40c1f7268..f2de82fff 100644 --- a/Obsidian.API/_Interfaces/ICodec.cs +++ b/Obsidian.API/_Interfaces/ICodec.cs @@ -1,4 +1,6 @@ namespace Obsidian.API; + +//TODO NBTWRITER NEEDS TO BE ACCESSIBLE FROM API public interface ICodec { public string Name { get; } diff --git a/Obsidian.API/_Interfaces/ILiving.cs b/Obsidian.API/_Interfaces/ILiving.cs index a3cbdcb25..fa1d129e9 100644 --- a/Obsidian.API/_Interfaces/ILiving.cs +++ b/Obsidian.API/_Interfaces/ILiving.cs @@ -40,11 +40,7 @@ public interface ILiving : IEntity /// The potion effect to be added. /// The duration of the potion in ticks. /// The amplifier of the effect. The given amplifier + 1 will be displayed in the HUD. - /// Whether to show the particles or not. - /// Whether to show the icon on the client or not. - /// Whether the potion is emitted by ambient source e.g. the beacon. The icon has a blue border in the HUD if its ambient. - public void AddPotionEffect(PotionEffect potion, int duration, byte amplifier = 0, bool showParticles = true, - bool showIcon = true, bool isAmbient = false); + public void AddPotionEffect(PotionEffect potion, int duration, byte amplifier = 0, EntityEffect effect = EntityEffect.None); /// /// Removes the given from the entity. diff --git a/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStateBuilder.cs b/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStateBuilder.cs index 6a24682ab..beae59892 100644 --- a/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStateBuilder.cs +++ b/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStateBuilder.cs @@ -110,6 +110,8 @@ private static void CreateStateBuilders(Block[] blocks, SourceProductionContext //TODO THIS NEEDS TO BE MOVED SOMEWHERE if (blockName == "TrialSpawner") blockName = "TrialSpawnerBlock"; + if (blockName == "Vault") + blockName = "VaultBlock"; var fullName = $"{blockName}StateBuilder"; diff --git a/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStates.cs b/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStates.cs index 58cd8668d..fcb81b9c2 100644 --- a/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStates.cs +++ b/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStates.cs @@ -15,6 +15,8 @@ private static void CreateBlockStates(Block[] blocks, SourceProductionContext ct //TODO THIS NEEDS TO BE MOVED SOMEWHERE if (blockName == "TrialSpawner") blockName = "TrialSpawnerBlock"; + if (blockName == "Vault") + blockName = "VaultBlock"; var builder = new CodeBuilder() .Namespace("Obsidian.API.BlockStates") diff --git a/Obsidian.SourceGenerators/Registry/BlocksGenerator.Blocks.cs b/Obsidian.SourceGenerators/Registry/BlocksGenerator.Blocks.cs index b6fa0d6b2..8aa2e9692 100644 --- a/Obsidian.SourceGenerators/Registry/BlocksGenerator.Blocks.cs +++ b/Obsidian.SourceGenerators/Registry/BlocksGenerator.Blocks.cs @@ -21,6 +21,8 @@ private static void GenerateBlocks(Block[] blocks, SourceProductionContext ctx) blockName = "ObsidianBlock"; if (blockName == "TrialSpawner") blockName = "TrialSpawnerBlock"; + if (blockName == "Vault") + blockName = "VaultBlock"; var builder = new CodeBuilder() .Using("Obsidian.API") diff --git a/Obsidian.SourceGenerators/Registry/BlocksGenerator.cs b/Obsidian.SourceGenerators/Registry/BlocksGenerator.cs index f44535eb5..73fb50e46 100644 --- a/Obsidian.SourceGenerators/Registry/BlocksGenerator.cs +++ b/Obsidian.SourceGenerators/Registry/BlocksGenerator.cs @@ -1,5 +1,6 @@ using Obsidian.SourceGenerators.Registry.Models; using System.Collections.Immutable; +using System.Diagnostics; using System.IO; namespace Obsidian.SourceGenerators.Registry; @@ -9,6 +10,9 @@ public sealed partial class BlocksGenerator : IIncrementalGenerator { public void Initialize(IncrementalGeneratorInitializationContext context) { + //if (!Debugger.IsAttached) + // Debugger.Launch(); + var jsonFiles = context.AdditionalTextsProvider .Where(file => file.Path.EndsWith(".json")) .Select(static (file, ct) => (name: Path.GetFileNameWithoutExtension(file.Path), content: file.GetText(ct)!.ToString())); diff --git a/Obsidian.SourceGenerators/Registry/Models/Assets.cs b/Obsidian.SourceGenerators/Registry/Models/Assets.cs index c3c673724..1833e155f 100644 --- a/Obsidian.SourceGenerators/Registry/Models/Assets.cs +++ b/Obsidian.SourceGenerators/Registry/Models/Assets.cs @@ -38,7 +38,8 @@ public static Dictionary GetCodecs(ImmutableArray<(string name, { "chat_type", ParseCodec(files.GetJsonFromArray("chat_type")) }, { "damage_type", ParseCodec(files.GetJsonFromArray("damage_type")) }, { "trim_pattern", ParseCodec(files.GetJsonFromArray("trim_pattern")) }, - { "trim_material", ParseCodec(files.GetJsonFromArray("trim_material")) } + { "trim_material", ParseCodec(files.GetJsonFromArray("trim_material")) }, + { "wolf_variant", ParseCodec(files.GetJsonFromArray("wolf_variant")) } }; } diff --git a/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Biomes.cs b/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Biomes.cs index 1127a87ea..d50362d27 100644 --- a/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Biomes.cs +++ b/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Biomes.cs @@ -4,6 +4,10 @@ namespace Obsidian.SourceGenerators.Registry; public partial class RegistryAssetsGenerator { + //This will have to saved as a seperate PR as it would require me to re-work this entire gen to make it work + //TODO COME BACK TO THIS + private static string[] BlacklistedProperties = ["Features", "Carvers", "Spawners", "SpawnCosts"]; + private static void GenerateBiomes(Codec[] biomes, CodeBuilder builder, SourceProductionContext ctx) { builder.Type($"public static class Biomes"); @@ -22,6 +26,12 @@ private static void GenerateBiomes(Codec[] biomes, CodeBuilder builder, SourcePr var name = property.Key; var value = property.Value; + if (BlacklistedProperties.Contains(name)) + { + builder.Append($"{name} = [],"); + continue; + } + builder.Append($"{name} = "); if (value.ValueKind == JsonValueKind.Object) diff --git a/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Codecs.cs b/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Codecs.cs index b76b2811d..6ee181dd3 100644 --- a/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Codecs.cs +++ b/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Codecs.cs @@ -14,6 +14,8 @@ private static void GenerateCodecs(Assets assets, SourceProductionContext ctx) .Using("Obsidian.API.Registry.Codecs.ArmorTrims") .Using("Obsidian.API.Registry.Codecs.ArmorTrims.TrimPattern") .Using("Obsidian.API.Registry.Codecs.ArmorTrims.TrimMaterial") + .Using("Obsidian.API.Registry.Codecs.WolfVariant") + .Using("System.Collections.Frozen") .Line() .Namespace("Obsidian.Registries") .Line() @@ -27,6 +29,7 @@ private static void GenerateCodecs(Assets assets, SourceProductionContext ctx) GenerateDamageTypes(codecs["damage_type"].ToArray(), builder, ctx); GenerateTrimMaterial(codecs["trim_material"].ToArray(), builder, ctx); GenerateTrimPattern(codecs["trim_pattern"].ToArray(), builder, ctx); + GenerateWolfVariants(codecs["wolf_variant"].ToArray(), builder, ctx); builder.EndScope(); diff --git a/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Dimensions.cs b/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Dimensions.cs index 91ebb2847..ee4ab3e83 100644 --- a/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Dimensions.cs +++ b/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.Dimensions.cs @@ -24,7 +24,7 @@ private static void GenerateDimensions(Codec[] dimensions, CodeBuilder builder, if (name == "MonsterSpawnLightLevel")// monster_spawn_light_level is an object and not int { - ParseMonsterLightValue(builder, value); + ParseMonsterLightValue(builder, value, ctx); continue; } @@ -47,7 +47,7 @@ private static void GenerateDimensions(Codec[] dimensions, CodeBuilder builder, builder.EndScope(); } - private static void ParseMonsterLightValue(CodeBuilder builder, JsonElement element) + private static void ParseMonsterLightValue(CodeBuilder builder, JsonElement element, SourceProductionContext ctx) { builder.Append("new() { "); @@ -68,7 +68,8 @@ private static void ParseMonsterLightValue(CodeBuilder builder, JsonElement elem continue; } - builder.Append($"{name} = \"{property.Value.GetString()}\","); + builder.Append($"{name} = "); + AppendValueType(builder, property.Value, ctx); } builder.Append("} "); } diff --git a/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.WolfVariants.cs b/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.WolfVariants.cs new file mode 100644 index 000000000..7e981408e --- /dev/null +++ b/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.WolfVariants.cs @@ -0,0 +1,51 @@ +using Obsidian.SourceGenerators.Registry.Models; +using System.Text.Json; + +namespace Obsidian.SourceGenerators.Registry; +public partial class RegistryAssetsGenerator +{ + private static void GenerateWolfVariants(Codec[] wolfVariants, CodeBuilder builder, SourceProductionContext ctx) + { + builder.Type($"public static class WolfVariant"); + + builder.Indent().Append("public const string CodecKey = \"minecraft:wolf_variant\";").Line().Line(); + builder.Indent().Append($"public const int GlobalBitsPerEntry = {(int)Math.Ceiling(Math.Log(wolfVariants.Length, 2))};").Line().Line(); + + foreach (var wolfVariant in wolfVariants) + { + var propertyName = wolfVariant.Name.RemoveNamespace().ToPascalCase(); + + builder.Indent().Append($"public static WolfVariantCodec {propertyName} {{ get; }} = new() {{ Id = {wolfVariant.RegistryId}, Name = \"{wolfVariant.Name}\", Element = new() {{ "); + + foreach (var property in wolfVariant.Properties) + { + var name = property.Key; + var value = property.Value; + + builder.Append($"{name} = "); + + if (value.ValueKind == JsonValueKind.Object) + { + ParseProperty(builder, value, ctx); + continue; + } + + AppendValueType(builder, value, ctx); + } + + builder.Append("} };").Line(); + } + + builder.Line().Statement("public static FrozenDictionary All { get; } = new Dictionary"); + + foreach (var name in wolfVariants.Select(x => x.Name)) + { + var propertyName = name.RemoveNamespace().ToPascalCase(); + builder.Line($"{{ \"{name}\", {propertyName} }},"); + } + + builder.EndScope(".ToFrozenDictionary()", true).Line(); + + builder.EndScope(); + } +} diff --git a/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.cs b/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.cs index 91159b755..27509665b 100644 --- a/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.cs +++ b/Obsidian.SourceGenerators/Registry/RegistryAssetsGenerator.cs @@ -1,5 +1,6 @@ using Obsidian.SourceGenerators.Registry.Models; using System.Collections.Immutable; +using System.Diagnostics; using System.Globalization; using System.IO; using System.Text.Json; @@ -11,6 +12,9 @@ public sealed partial class RegistryAssetsGenerator : IIncrementalGenerator { public void Initialize(IncrementalGeneratorInitializationContext context) { + //if (!Debugger.IsAttached) + // Debugger.Launch(); + CultureInfo.CurrentCulture = CultureInfo.InvariantCulture; var jsonFiles = context.AdditionalTextsProvider diff --git a/Obsidian/Assets/advancements.json b/Obsidian/Assets/advancements.json index 2f05a9511..eaeb7f5ea 100644 --- a/Obsidian/Assets/advancements.json +++ b/Obsidian/Assets/advancements.json @@ -10,7 +10,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:badlands" + "biomes": "minecraft:badlands" } } } @@ -26,7 +26,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:bamboo_jungle" + "biomes": "minecraft:bamboo_jungle" } } } @@ -42,7 +42,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:beach" + "biomes": "minecraft:beach" } } } @@ -58,7 +58,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:birch_forest" + "biomes": "minecraft:birch_forest" } } } @@ -74,7 +74,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:cherry_grove" + "biomes": "minecraft:cherry_grove" } } } @@ -90,7 +90,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:cold_ocean" + "biomes": "minecraft:cold_ocean" } } } @@ -106,7 +106,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:dark_forest" + "biomes": "minecraft:dark_forest" } } } @@ -122,7 +122,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:deep_cold_ocean" + "biomes": "minecraft:deep_cold_ocean" } } } @@ -138,7 +138,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:deep_dark" + "biomes": "minecraft:deep_dark" } } } @@ -154,7 +154,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:deep_frozen_ocean" + "biomes": "minecraft:deep_frozen_ocean" } } } @@ -170,7 +170,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:deep_lukewarm_ocean" + "biomes": "minecraft:deep_lukewarm_ocean" } } } @@ -186,7 +186,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:deep_ocean" + "biomes": "minecraft:deep_ocean" } } } @@ -202,7 +202,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:desert" + "biomes": "minecraft:desert" } } } @@ -218,7 +218,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:dripstone_caves" + "biomes": "minecraft:dripstone_caves" } } } @@ -234,7 +234,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:eroded_badlands" + "biomes": "minecraft:eroded_badlands" } } } @@ -250,7 +250,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:flower_forest" + "biomes": "minecraft:flower_forest" } } } @@ -266,7 +266,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:forest" + "biomes": "minecraft:forest" } } } @@ -282,7 +282,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:frozen_ocean" + "biomes": "minecraft:frozen_ocean" } } } @@ -298,7 +298,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:frozen_peaks" + "biomes": "minecraft:frozen_peaks" } } } @@ -314,7 +314,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:frozen_river" + "biomes": "minecraft:frozen_river" } } } @@ -330,7 +330,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:grove" + "biomes": "minecraft:grove" } } } @@ -346,7 +346,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:ice_spikes" + "biomes": "minecraft:ice_spikes" } } } @@ -362,7 +362,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:jagged_peaks" + "biomes": "minecraft:jagged_peaks" } } } @@ -378,7 +378,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:jungle" + "biomes": "minecraft:jungle" } } } @@ -394,7 +394,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:lukewarm_ocean" + "biomes": "minecraft:lukewarm_ocean" } } } @@ -410,7 +410,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:lush_caves" + "biomes": "minecraft:lush_caves" } } } @@ -426,7 +426,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:mangrove_swamp" + "biomes": "minecraft:mangrove_swamp" } } } @@ -442,7 +442,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:meadow" + "biomes": "minecraft:meadow" } } } @@ -458,7 +458,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:mushroom_fields" + "biomes": "minecraft:mushroom_fields" } } } @@ -474,7 +474,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:ocean" + "biomes": "minecraft:ocean" } } } @@ -490,7 +490,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:old_growth_birch_forest" + "biomes": "minecraft:old_growth_birch_forest" } } } @@ -506,7 +506,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:old_growth_pine_taiga" + "biomes": "minecraft:old_growth_pine_taiga" } } } @@ -522,7 +522,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:old_growth_spruce_taiga" + "biomes": "minecraft:old_growth_spruce_taiga" } } } @@ -538,7 +538,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:plains" + "biomes": "minecraft:plains" } } } @@ -554,7 +554,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:river" + "biomes": "minecraft:river" } } } @@ -570,7 +570,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:savanna" + "biomes": "minecraft:savanna" } } } @@ -586,7 +586,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:savanna_plateau" + "biomes": "minecraft:savanna_plateau" } } } @@ -602,7 +602,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:snowy_beach" + "biomes": "minecraft:snowy_beach" } } } @@ -618,7 +618,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:snowy_plains" + "biomes": "minecraft:snowy_plains" } } } @@ -634,7 +634,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:snowy_slopes" + "biomes": "minecraft:snowy_slopes" } } } @@ -650,7 +650,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:snowy_taiga" + "biomes": "minecraft:snowy_taiga" } } } @@ -666,7 +666,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:sparse_jungle" + "biomes": "minecraft:sparse_jungle" } } } @@ -682,7 +682,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:stony_peaks" + "biomes": "minecraft:stony_peaks" } } } @@ -698,7 +698,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:stony_shore" + "biomes": "minecraft:stony_shore" } } } @@ -714,7 +714,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:sunflower_plains" + "biomes": "minecraft:sunflower_plains" } } } @@ -730,7 +730,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:swamp" + "biomes": "minecraft:swamp" } } } @@ -746,7 +746,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:taiga" + "biomes": "minecraft:taiga" } } } @@ -762,7 +762,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:warm_ocean" + "biomes": "minecraft:warm_ocean" } } } @@ -778,7 +778,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:windswept_forest" + "biomes": "minecraft:windswept_forest" } } } @@ -794,7 +794,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:windswept_gravelly_hills" + "biomes": "minecraft:windswept_gravelly_hills" } } } @@ -810,7 +810,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:windswept_hills" + "biomes": "minecraft:windswept_hills" } } } @@ -826,7 +826,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:windswept_savanna" + "biomes": "minecraft:windswept_savanna" } } } @@ -842,7 +842,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:wooded_badlands" + "biomes": "minecraft:wooded_badlands" } } } @@ -857,8 +857,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:diamond_boots", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:diamond_boots" }, "title": { "translate": "advancements.adventure.adventuring_time.title" @@ -1047,8 +1047,8 @@ "frame": "challenge", "hidden": true, "icon": { - "item": "minecraft:crossbow", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:crossbow" }, "title": { "translate": "advancements.adventure.arbalistic.title" @@ -1076,7 +1076,8 @@ "translate": "advancements.adventure.avoid_vibration.description" }, "icon": { - "item": "minecraft:sculk_sensor" + "count": 1, + "id": "minecraft:sculk_sensor" }, "title": { "translate": "advancements.adventure.avoid_vibration.title" @@ -1089,6 +1090,46 @@ ], "sends_telemetry_event": true }, + "minecraft:adventure/brush_armadillo": { + "parent": "minecraft:adventure/root", + "criteria": { + "brush_armadillo": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:armadillo" + } + } + ], + "item": { + "items": "minecraft:brush" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.brush_armadillo.description" + }, + "icon": { + "count": 1, + "id": "minecraft:armadillo_scute" + }, + "title": { + "translate": "advancements.adventure.brush_armadillo.title" + } + }, + "requirements": [ + [ + "brush_armadillo" + ] + ], + "sends_telemetry_event": true + }, "minecraft:adventure/bullseye": { "parent": "minecraft:adventure/shoot_arrow", "criteria": { @@ -1118,7 +1159,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:target" + "count": 1, + "id": "minecraft:target" }, "title": { "translate": "advancements.adventure.bullseye.title" @@ -1141,16 +1183,16 @@ "conditions": { "ingredients": [ { - "tag": "minecraft:decorated_pot_sherds" + "items": "#minecraft:decorated_pot_sherds" }, { - "tag": "minecraft:decorated_pot_sherds" + "items": "#minecraft:decorated_pot_sherds" }, { - "tag": "minecraft:decorated_pot_sherds" + "items": "#minecraft:decorated_pot_sherds" }, { - "tag": "minecraft:decorated_pot_sherds" + "items": "#minecraft:decorated_pot_sherds" } ], "recipe_id": "minecraft:decorated_pot" @@ -1163,8 +1205,16 @@ "translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.description" }, "icon": { - "item": "minecraft:decorated_pot", - "nbt": "{BlockEntityTag:{id:\"minecraft:decorated_pot\",sherds:[\"minecraft:brick\",\"minecraft:heart_pottery_sherd\",\"minecraft:brick\",\"minecraft:explorer_pottery_sherd\"]}}" + "components": { + "minecraft:pot_decorations": [ + "minecraft:brick", + "minecraft:heart_pottery_sherd", + "minecraft:brick", + "minecraft:explorer_pottery_sherd" + ] + }, + "count": 1, + "id": "minecraft:decorated_pot" }, "title": { "translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.title" @@ -1218,7 +1268,8 @@ "translate": "advancements.adventure.fall_from_world_height.description" }, "icon": { - "item": "minecraft:water_bucket" + "count": 1, + "id": "minecraft:water_bucket" }, "title": { "translate": "advancements.adventure.fall_from_world_height.title" @@ -1245,8 +1296,46 @@ "frame": "challenge", "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:'{\"translate\":\"block.minecraft.ominous_banner\",\"color\":\"gold\"}'}}" + "components": { + "minecraft:banner_patterns": [ + { + "color": "cyan", + "pattern": "minecraft:rhombus" + }, + { + "color": "light_gray", + "pattern": "minecraft:stripe_bottom" + }, + { + "color": "gray", + "pattern": "minecraft:stripe_center" + }, + { + "color": "light_gray", + "pattern": "minecraft:border" + }, + { + "color": "black", + "pattern": "minecraft:stripe_middle" + }, + { + "color": "light_gray", + "pattern": "minecraft:half_horizontal" + }, + { + "color": "light_gray", + "pattern": "minecraft:circle" + }, + { + "color": "black", + "pattern": "minecraft:border" + } + ], + "minecraft:hide_additional_tooltip": {}, + "minecraft:item_name": "{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}" + }, + "count": 1, + "id": "minecraft:white_banner" }, "title": { "translate": "advancements.adventure.hero_of_the_village.title" @@ -1277,7 +1366,8 @@ "translate": "advancements.adventure.honey_block_slide.description" }, "icon": { - "item": "minecraft:honey_block" + "count": 1, + "id": "minecraft:honey_block" }, "title": { "translate": "advancements.adventure.honey_block_slide.title" @@ -1776,8 +1866,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:diamond_sword", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:diamond_sword" }, "title": { "translate": "advancements.adventure.kill_all_mobs.title" @@ -2377,8 +2467,8 @@ "translate": "advancements.adventure.kill_a_mob.description" }, "icon": { - "item": "minecraft:iron_sword", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:iron_sword" }, "title": { "translate": "advancements.adventure.kill_a_mob.title" @@ -2437,7 +2527,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:sculk_catalyst" + "count": 1, + "id": "minecraft:sculk_catalyst" }, "title": { "translate": "advancements.adventure.kill_mob_near_sculk_catalyst.title" @@ -2475,7 +2566,7 @@ } }, "type_specific": { - "type": "lightning", + "type": "minecraft:lightning", "blocks_set_on_fire": 0 } } @@ -2490,7 +2581,8 @@ "translate": "advancements.adventure.lightning_rod_with_villager_no_fire.description" }, "icon": { - "item": "minecraft:lightning_rod" + "count": 1, + "id": "minecraft:lightning_rod" }, "title": { "translate": "advancements.adventure.lightning_rod_with_villager_no_fire.title" @@ -2509,9 +2601,7 @@ "shot_crossbow": { "conditions": { "item": { - "items": [ - "minecraft:crossbow" - ] + "items": "minecraft:crossbow" } }, "trigger": "minecraft:shot_crossbow" @@ -2522,8 +2612,8 @@ "translate": "advancements.adventure.ol_betsy.description" }, "icon": { - "item": "minecraft:crossbow", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:crossbow" }, "title": { "translate": "advancements.adventure.ol_betsy.title" @@ -2545,18 +2635,16 @@ { "condition": "minecraft:location_check", "predicate": { - "biome": "minecraft:meadow", + "biomes": "minecraft:meadow", "block": { - "blocks": [ - "minecraft:jukebox" - ] + "blocks": "minecraft:jukebox" } } }, { "condition": "minecraft:match_tool", "predicate": { - "tag": "minecraft:music_discs" + "items": "#minecraft:music_discs" } } ] @@ -2569,7 +2657,8 @@ "translate": "advancements.adventure.play_jukebox_in_meadows.description" }, "icon": { - "item": "minecraft:jukebox" + "count": 1, + "id": "minecraft:jukebox" }, "title": { "translate": "advancements.adventure.play_jukebox_in_meadows.title" @@ -2600,9 +2689,7 @@ "offsetZ": 1, "predicate": { "block": { - "blocks": [ - "minecraft:comparator" - ], + "blocks": "minecraft:comparator", "state": { "facing": "north" } @@ -2614,9 +2701,7 @@ "offsetZ": -1, "predicate": { "block": { - "blocks": [ - "minecraft:comparator" - ], + "blocks": "minecraft:comparator", "state": { "facing": "south" } @@ -2628,9 +2713,7 @@ "offsetX": 1, "predicate": { "block": { - "blocks": [ - "minecraft:comparator" - ], + "blocks": "minecraft:comparator", "state": { "facing": "west" } @@ -2642,9 +2725,7 @@ "offsetX": -1, "predicate": { "block": { - "blocks": [ - "minecraft:comparator" - ], + "blocks": "minecraft:comparator", "state": { "facing": "east" } @@ -2678,9 +2759,7 @@ "offsetZ": -1, "predicate": { "block": { - "blocks": [ - "minecraft:chiseled_bookshelf" - ] + "blocks": "minecraft:chiseled_bookshelf" } } } @@ -2701,9 +2780,7 @@ "offsetZ": 1, "predicate": { "block": { - "blocks": [ - "minecraft:chiseled_bookshelf" - ] + "blocks": "minecraft:chiseled_bookshelf" } } } @@ -2724,9 +2801,7 @@ "offsetX": -1, "predicate": { "block": { - "blocks": [ - "minecraft:chiseled_bookshelf" - ] + "blocks": "minecraft:chiseled_bookshelf" } } } @@ -2747,9 +2822,7 @@ "offsetX": 1, "predicate": { "block": { - "blocks": [ - "minecraft:chiseled_bookshelf" - ] + "blocks": "minecraft:chiseled_bookshelf" } } } @@ -2767,7 +2840,8 @@ "translate": "advancements.adventure.read_power_from_chiseled_bookshelf.description" }, "icon": { - "item": "minecraft:chiseled_bookshelf" + "count": 1, + "id": "minecraft:chiseled_bookshelf" }, "title": { "translate": "advancements.adventure.read_power_from_chiseled_bookshelf.title" @@ -2797,7 +2871,8 @@ "translate": "advancements.adventure.root.description" }, "icon": { - "item": "minecraft:map" + "count": 1, + "id": "minecraft:map" }, "show_toast": false, "title": { @@ -2831,7 +2906,7 @@ "conditions": { "items": [ { - "tag": "minecraft:decorated_pot_sherds" + "items": "#minecraft:decorated_pot_sherds" } ] }, @@ -2867,8 +2942,8 @@ "translate": "advancements.adventure.salvage_sherd.description" }, "icon": { - "item": "minecraft:brush", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:brush" }, "title": { "translate": "advancements.adventure.salvage_sherd.title" @@ -2916,8 +2991,8 @@ "translate": "advancements.adventure.shoot_arrow.description" }, "icon": { - "item": "minecraft:bow", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:bow" }, "title": { "translate": "advancements.adventure.shoot_arrow.title" @@ -2942,7 +3017,8 @@ "translate": "advancements.adventure.sleep_in_bed.description" }, "icon": { - "item": "minecraft:red_bed" + "count": 1, + "id": "minecraft:red_bed" }, "title": { "translate": "advancements.adventure.sleep_in_bed.title" @@ -2992,7 +3068,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:arrow" + "count": 1, + "id": "minecraft:arrow" }, "title": { "translate": "advancements.adventure.sniper_duel.title" @@ -3014,9 +3091,7 @@ "spyglass_at_dragon": { "conditions": { "item": { - "items": [ - "minecraft:spyglass" - ] + "items": "minecraft:spyglass" }, "player": [ { @@ -3024,7 +3099,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "player", + "type": "minecraft:player", "looking_at": { "type": "minecraft:ender_dragon" } @@ -3041,7 +3116,8 @@ "translate": "advancements.adventure.spyglass_at_dragon.description" }, "icon": { - "item": "minecraft:spyglass" + "count": 1, + "id": "minecraft:spyglass" }, "title": { "translate": "advancements.adventure.spyglass_at_dragon.title" @@ -3060,9 +3136,7 @@ "spyglass_at_ghast": { "conditions": { "item": { - "items": [ - "minecraft:spyglass" - ] + "items": "minecraft:spyglass" }, "player": [ { @@ -3070,7 +3144,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "player", + "type": "minecraft:player", "looking_at": { "type": "minecraft:ghast" } @@ -3087,7 +3161,8 @@ "translate": "advancements.adventure.spyglass_at_ghast.description" }, "icon": { - "item": "minecraft:spyglass" + "count": 1, + "id": "minecraft:spyglass" }, "title": { "translate": "advancements.adventure.spyglass_at_ghast.title" @@ -3106,9 +3181,7 @@ "spyglass_at_parrot": { "conditions": { "item": { - "items": [ - "minecraft:spyglass" - ] + "items": "minecraft:spyglass" }, "player": [ { @@ -3116,7 +3189,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "player", + "type": "minecraft:player", "looking_at": { "type": "minecraft:parrot" } @@ -3133,7 +3206,8 @@ "translate": "advancements.adventure.spyglass_at_parrot.description" }, "icon": { - "item": "minecraft:spyglass" + "count": 1, + "id": "minecraft:spyglass" }, "title": { "translate": "advancements.adventure.spyglass_at_parrot.title" @@ -3170,7 +3244,8 @@ }, "frame": "goal", "icon": { - "item": "minecraft:carved_pumpkin" + "count": 1, + "id": "minecraft:carved_pumpkin" }, "title": { "translate": "advancements.adventure.summon_iron_golem.title" @@ -3210,8 +3285,8 @@ "translate": "advancements.adventure.throw_trident.description" }, "icon": { - "item": "minecraft:trident", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:trident" }, "title": { "translate": "advancements.adventure.throw_trident.title" @@ -3230,9 +3305,7 @@ "used_totem": { "conditions": { "item": { - "items": [ - "minecraft:totem_of_undying" - ] + "items": "minecraft:totem_of_undying" } }, "trigger": "minecraft:used_totem" @@ -3244,7 +3317,8 @@ }, "frame": "goal", "icon": { - "item": "minecraft:totem_of_undying" + "count": 1, + "id": "minecraft:totem_of_undying" }, "title": { "translate": "advancements.adventure.totem_of_undying.title" @@ -3269,7 +3343,8 @@ "translate": "advancements.adventure.trade.description" }, "icon": { - "item": "minecraft:emerald" + "count": 1, + "id": "minecraft:emerald" }, "title": { "translate": "advancements.adventure.trade.title" @@ -3311,7 +3386,8 @@ "translate": "advancements.adventure.trade_at_world_height.description" }, "icon": { - "item": "minecraft:emerald" + "count": 1, + "id": "minecraft:emerald" }, "title": { "translate": "advancements.adventure.trade_at_world_height.title" @@ -3382,7 +3458,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:silence_armor_trim_smithing_template" + "count": 1, + "id": "minecraft:silence_armor_trim_smithing_template" }, "title": { "translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.title" @@ -3524,7 +3601,8 @@ "translate": "advancements.adventure.trim_with_any_armor_pattern.description" }, "icon": { - "item": "minecraft:dune_armor_trim_smithing_template" + "count": 1, + "id": "minecraft:dune_armor_trim_smithing_template" }, "title": { "translate": "advancements.adventure.trim_with_any_armor_pattern.title" @@ -3587,8 +3665,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:crossbow", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:crossbow" }, "title": { "translate": "advancements.adventure.two_birds_one_arrow.title" @@ -3629,8 +3707,8 @@ "translate": "advancements.adventure.very_very_frightening.description" }, "icon": { - "item": "minecraft:trident", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:trident" }, "title": { "translate": "advancements.adventure.very_very_frightening.title" @@ -3656,10 +3734,55 @@ "type": "#minecraft:raiders", "equipment": { "head": { - "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:'{\"translate\":\"block.minecraft.ominous_banner\",\"color\":\"gold\"}'}}" + "components": { + "minecraft:attribute_modifiers": { + "modifiers": [] + }, + "minecraft:banner_patterns": [ + { + "color": "cyan", + "pattern": "minecraft:rhombus" + }, + { + "color": "light_gray", + "pattern": "minecraft:stripe_bottom" + }, + { + "color": "gray", + "pattern": "minecraft:stripe_center" + }, + { + "color": "light_gray", + "pattern": "minecraft:border" + }, + { + "color": "black", + "pattern": "minecraft:stripe_middle" + }, + { + "color": "light_gray", + "pattern": "minecraft:half_horizontal" + }, + { + "color": "light_gray", + "pattern": "minecraft:circle" + }, + { + "color": "black", + "pattern": "minecraft:border" + } + ], + "minecraft:enchantments": { + "levels": {} + }, + "minecraft:hide_additional_tooltip": {}, + "minecraft:item_name": "{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}", + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0 + }, + "items": "minecraft:white_banner" } } } @@ -3675,8 +3798,46 @@ }, "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:'{\"translate\":\"block.minecraft.ominous_banner\",\"color\":\"gold\"}'}}" + "components": { + "minecraft:banner_patterns": [ + { + "color": "cyan", + "pattern": "minecraft:rhombus" + }, + { + "color": "light_gray", + "pattern": "minecraft:stripe_bottom" + }, + { + "color": "gray", + "pattern": "minecraft:stripe_center" + }, + { + "color": "light_gray", + "pattern": "minecraft:border" + }, + { + "color": "black", + "pattern": "minecraft:stripe_middle" + }, + { + "color": "light_gray", + "pattern": "minecraft:half_horizontal" + }, + { + "color": "light_gray", + "pattern": "minecraft:circle" + }, + { + "color": "black", + "pattern": "minecraft:border" + } + ], + "minecraft:hide_additional_tooltip": {}, + "minecraft:item_name": "{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}" + }, + "count": 1, + "id": "minecraft:white_banner" }, "title": { "translate": "advancements.adventure.voluntary_exile.title" @@ -3701,16 +3862,12 @@ "predicate": { "equipment": { "feet": { - "items": [ - "minecraft:leather_boots" - ] + "items": "minecraft:leather_boots" } }, "stepping_on": { "block": { - "blocks": [ - "minecraft:powder_snow" - ] + "blocks": "minecraft:powder_snow" } } } @@ -3725,8 +3882,8 @@ "translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.description" }, "icon": { - "item": "minecraft:leather_boots", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:leather_boots" }, "title": { "translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.title" @@ -3764,8 +3921,8 @@ "translate": "advancements.adventure.whos_the_pillager_now.description" }, "icon": { - "item": "minecraft:crossbow", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:crossbow" }, "title": { "translate": "advancements.adventure.whos_the_pillager_now.title" @@ -3785,9 +3942,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dragon_breath" - ] + "items": "minecraft:dragon_breath" } ] }, @@ -3800,7 +3955,8 @@ }, "frame": "goal", "icon": { - "item": "minecraft:dragon_breath" + "count": 1, + "id": "minecraft:dragon_breath" }, "title": { "translate": "advancements.end.dragon_breath.title" @@ -3820,9 +3976,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dragon_egg" - ] + "items": "minecraft:dragon_egg" } ] }, @@ -3835,7 +3989,8 @@ }, "frame": "goal", "icon": { - "item": "minecraft:dragon_egg" + "count": 1, + "id": "minecraft:dragon_egg" }, "title": { "translate": "advancements.end.dragon_egg.title" @@ -3855,9 +4010,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:elytra" - ] + "items": "minecraft:elytra" } ] }, @@ -3870,8 +4023,8 @@ }, "frame": "goal", "icon": { - "item": "minecraft:elytra", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:elytra" }, "title": { "translate": "advancements.end.elytra.title" @@ -3899,7 +4052,8 @@ "translate": "advancements.end.enter_end_gateway.description" }, "icon": { - "item": "minecraft:ender_pearl" + "count": 1, + "id": "minecraft:ender_pearl" }, "title": { "translate": "advancements.end.enter_end_gateway.title" @@ -3923,7 +4077,7 @@ "entity": "this", "predicate": { "location": { - "structure": "minecraft:end_city" + "structures": "minecraft:end_city" } } } @@ -3937,7 +4091,8 @@ "translate": "advancements.end.find_end_city.description" }, "icon": { - "item": "minecraft:purpur_block" + "count": 1, + "id": "minecraft:purpur_block" }, "title": { "translate": "advancements.end.find_end_city.title" @@ -3973,7 +4128,8 @@ "translate": "advancements.end.kill_dragon.description" }, "icon": { - "item": "minecraft:dragon_head" + "count": 1, + "id": "minecraft:dragon_head" }, "title": { "translate": "advancements.end.kill_dragon.title" @@ -4006,7 +4162,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:shulker_shell" + "count": 1, + "id": "minecraft:shulker_shell" }, "title": { "translate": "advancements.end.levitate.title" @@ -4046,7 +4203,8 @@ }, "frame": "goal", "icon": { - "item": "minecraft:end_crystal" + "count": 1, + "id": "minecraft:end_crystal" }, "title": { "translate": "advancements.end.respawn_dragon.title" @@ -4075,7 +4233,8 @@ "translate": "advancements.end.root.description" }, "icon": { - "item": "minecraft:end_stone" + "count": 1, + "id": "minecraft:end_stone" }, "show_toast": false, "title": { @@ -4099,18 +4258,14 @@ "condition": "minecraft:location_check", "predicate": { "block": { - "blocks": [ - "minecraft:note_block" - ] + "blocks": "minecraft:note_block" } } }, { "condition": "minecraft:match_tool", "predicate": { - "items": [ - "minecraft:cake" - ] + "items": "minecraft:cake" } } ] @@ -4124,7 +4279,8 @@ }, "hidden": true, "icon": { - "item": "minecraft:note_block" + "count": 1, + "id": "minecraft:note_block" }, "title": { "translate": "advancements.husbandry.allay_deliver_cake_to_note_block.title" @@ -4161,7 +4317,8 @@ }, "hidden": true, "icon": { - "item": "minecraft:cookie" + "count": 1, + "id": "minecraft:cookie" }, "title": { "translate": "advancements.husbandry.allay_deliver_item_to_player.title" @@ -4180,9 +4337,7 @@ "axolotl_bucket": { "conditions": { "item": { - "items": [ - "minecraft:axolotl_bucket" - ] + "items": "minecraft:axolotl_bucket" } }, "trigger": "minecraft:filled_bucket" @@ -4193,7 +4348,8 @@ "translate": "advancements.husbandry.axolotl_in_a_bucket.description" }, "icon": { - "item": "minecraft:axolotl_bucket" + "count": 1, + "id": "minecraft:axolotl_bucket" }, "title": { "translate": "advancements.husbandry.axolotl_in_a_bucket.title" @@ -4212,9 +4368,7 @@ "apple": { "conditions": { "item": { - "items": [ - "minecraft:apple" - ] + "items": "minecraft:apple" } }, "trigger": "minecraft:consume_item" @@ -4222,9 +4376,7 @@ "baked_potato": { "conditions": { "item": { - "items": [ - "minecraft:baked_potato" - ] + "items": "minecraft:baked_potato" } }, "trigger": "minecraft:consume_item" @@ -4232,9 +4384,7 @@ "beef": { "conditions": { "item": { - "items": [ - "minecraft:beef" - ] + "items": "minecraft:beef" } }, "trigger": "minecraft:consume_item" @@ -4242,9 +4392,7 @@ "beetroot": { "conditions": { "item": { - "items": [ - "minecraft:beetroot" - ] + "items": "minecraft:beetroot" } }, "trigger": "minecraft:consume_item" @@ -4252,9 +4400,7 @@ "beetroot_soup": { "conditions": { "item": { - "items": [ - "minecraft:beetroot_soup" - ] + "items": "minecraft:beetroot_soup" } }, "trigger": "minecraft:consume_item" @@ -4262,9 +4408,7 @@ "bread": { "conditions": { "item": { - "items": [ - "minecraft:bread" - ] + "items": "minecraft:bread" } }, "trigger": "minecraft:consume_item" @@ -4272,9 +4416,7 @@ "carrot": { "conditions": { "item": { - "items": [ - "minecraft:carrot" - ] + "items": "minecraft:carrot" } }, "trigger": "minecraft:consume_item" @@ -4282,9 +4424,7 @@ "chicken": { "conditions": { "item": { - "items": [ - "minecraft:chicken" - ] + "items": "minecraft:chicken" } }, "trigger": "minecraft:consume_item" @@ -4292,9 +4432,7 @@ "chorus_fruit": { "conditions": { "item": { - "items": [ - "minecraft:chorus_fruit" - ] + "items": "minecraft:chorus_fruit" } }, "trigger": "minecraft:consume_item" @@ -4302,9 +4440,7 @@ "cod": { "conditions": { "item": { - "items": [ - "minecraft:cod" - ] + "items": "minecraft:cod" } }, "trigger": "minecraft:consume_item" @@ -4312,9 +4448,7 @@ "cooked_beef": { "conditions": { "item": { - "items": [ - "minecraft:cooked_beef" - ] + "items": "minecraft:cooked_beef" } }, "trigger": "minecraft:consume_item" @@ -4322,9 +4456,7 @@ "cooked_chicken": { "conditions": { "item": { - "items": [ - "minecraft:cooked_chicken" - ] + "items": "minecraft:cooked_chicken" } }, "trigger": "minecraft:consume_item" @@ -4332,9 +4464,7 @@ "cooked_cod": { "conditions": { "item": { - "items": [ - "minecraft:cooked_cod" - ] + "items": "minecraft:cooked_cod" } }, "trigger": "minecraft:consume_item" @@ -4342,9 +4472,7 @@ "cooked_mutton": { "conditions": { "item": { - "items": [ - "minecraft:cooked_mutton" - ] + "items": "minecraft:cooked_mutton" } }, "trigger": "minecraft:consume_item" @@ -4352,9 +4480,7 @@ "cooked_porkchop": { "conditions": { "item": { - "items": [ - "minecraft:cooked_porkchop" - ] + "items": "minecraft:cooked_porkchop" } }, "trigger": "minecraft:consume_item" @@ -4362,9 +4488,7 @@ "cooked_rabbit": { "conditions": { "item": { - "items": [ - "minecraft:cooked_rabbit" - ] + "items": "minecraft:cooked_rabbit" } }, "trigger": "minecraft:consume_item" @@ -4372,9 +4496,7 @@ "cooked_salmon": { "conditions": { "item": { - "items": [ - "minecraft:cooked_salmon" - ] + "items": "minecraft:cooked_salmon" } }, "trigger": "minecraft:consume_item" @@ -4382,9 +4504,7 @@ "cookie": { "conditions": { "item": { - "items": [ - "minecraft:cookie" - ] + "items": "minecraft:cookie" } }, "trigger": "minecraft:consume_item" @@ -4392,9 +4512,7 @@ "dried_kelp": { "conditions": { "item": { - "items": [ - "minecraft:dried_kelp" - ] + "items": "minecraft:dried_kelp" } }, "trigger": "minecraft:consume_item" @@ -4402,9 +4520,7 @@ "enchanted_golden_apple": { "conditions": { "item": { - "items": [ - "minecraft:enchanted_golden_apple" - ] + "items": "minecraft:enchanted_golden_apple" } }, "trigger": "minecraft:consume_item" @@ -4412,9 +4528,7 @@ "glow_berries": { "conditions": { "item": { - "items": [ - "minecraft:glow_berries" - ] + "items": "minecraft:glow_berries" } }, "trigger": "minecraft:consume_item" @@ -4422,9 +4536,7 @@ "golden_apple": { "conditions": { "item": { - "items": [ - "minecraft:golden_apple" - ] + "items": "minecraft:golden_apple" } }, "trigger": "minecraft:consume_item" @@ -4432,9 +4544,7 @@ "golden_carrot": { "conditions": { "item": { - "items": [ - "minecraft:golden_carrot" - ] + "items": "minecraft:golden_carrot" } }, "trigger": "minecraft:consume_item" @@ -4442,9 +4552,7 @@ "honey_bottle": { "conditions": { "item": { - "items": [ - "minecraft:honey_bottle" - ] + "items": "minecraft:honey_bottle" } }, "trigger": "minecraft:consume_item" @@ -4452,9 +4560,7 @@ "melon_slice": { "conditions": { "item": { - "items": [ - "minecraft:melon_slice" - ] + "items": "minecraft:melon_slice" } }, "trigger": "minecraft:consume_item" @@ -4462,9 +4568,7 @@ "mushroom_stew": { "conditions": { "item": { - "items": [ - "minecraft:mushroom_stew" - ] + "items": "minecraft:mushroom_stew" } }, "trigger": "minecraft:consume_item" @@ -4472,9 +4576,7 @@ "mutton": { "conditions": { "item": { - "items": [ - "minecraft:mutton" - ] + "items": "minecraft:mutton" } }, "trigger": "minecraft:consume_item" @@ -4482,9 +4584,7 @@ "poisonous_potato": { "conditions": { "item": { - "items": [ - "minecraft:poisonous_potato" - ] + "items": "minecraft:poisonous_potato" } }, "trigger": "minecraft:consume_item" @@ -4492,9 +4592,7 @@ "porkchop": { "conditions": { "item": { - "items": [ - "minecraft:porkchop" - ] + "items": "minecraft:porkchop" } }, "trigger": "minecraft:consume_item" @@ -4502,9 +4600,7 @@ "potato": { "conditions": { "item": { - "items": [ - "minecraft:potato" - ] + "items": "minecraft:potato" } }, "trigger": "minecraft:consume_item" @@ -4512,9 +4608,7 @@ "pufferfish": { "conditions": { "item": { - "items": [ - "minecraft:pufferfish" - ] + "items": "minecraft:pufferfish" } }, "trigger": "minecraft:consume_item" @@ -4522,9 +4616,7 @@ "pumpkin_pie": { "conditions": { "item": { - "items": [ - "minecraft:pumpkin_pie" - ] + "items": "minecraft:pumpkin_pie" } }, "trigger": "minecraft:consume_item" @@ -4532,9 +4624,7 @@ "rabbit": { "conditions": { "item": { - "items": [ - "minecraft:rabbit" - ] + "items": "minecraft:rabbit" } }, "trigger": "minecraft:consume_item" @@ -4542,9 +4632,7 @@ "rabbit_stew": { "conditions": { "item": { - "items": [ - "minecraft:rabbit_stew" - ] + "items": "minecraft:rabbit_stew" } }, "trigger": "minecraft:consume_item" @@ -4552,9 +4640,7 @@ "rotten_flesh": { "conditions": { "item": { - "items": [ - "minecraft:rotten_flesh" - ] + "items": "minecraft:rotten_flesh" } }, "trigger": "minecraft:consume_item" @@ -4562,9 +4648,7 @@ "salmon": { "conditions": { "item": { - "items": [ - "minecraft:salmon" - ] + "items": "minecraft:salmon" } }, "trigger": "minecraft:consume_item" @@ -4572,9 +4656,7 @@ "spider_eye": { "conditions": { "item": { - "items": [ - "minecraft:spider_eye" - ] + "items": "minecraft:spider_eye" } }, "trigger": "minecraft:consume_item" @@ -4582,9 +4664,7 @@ "suspicious_stew": { "conditions": { "item": { - "items": [ - "minecraft:suspicious_stew" - ] + "items": "minecraft:suspicious_stew" } }, "trigger": "minecraft:consume_item" @@ -4592,9 +4672,7 @@ "sweet_berries": { "conditions": { "item": { - "items": [ - "minecraft:sweet_berries" - ] + "items": "minecraft:sweet_berries" } }, "trigger": "minecraft:consume_item" @@ -4602,9 +4680,7 @@ "tropical_fish": { "conditions": { "item": { - "items": [ - "minecraft:tropical_fish" - ] + "items": "minecraft:tropical_fish" } }, "trigger": "minecraft:consume_item" @@ -4616,7 +4692,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:apple" + "count": 1, + "id": "minecraft:apple" }, "title": { "translate": "advancements.husbandry.balanced_diet.title" @@ -4752,6 +4829,20 @@ "minecraft:husbandry/bred_all_animals": { "parent": "minecraft:husbandry/breed_an_animal", "criteria": { + "minecraft:armadillo": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:armadillo" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, "minecraft:axolotl": { "conditions": { "child": [ @@ -5122,7 +5213,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:golden_carrot" + "count": 1, + "id": "minecraft:golden_carrot" }, "title": { "translate": "advancements.husbandry.breed_all_animals.title" @@ -5192,6 +5284,9 @@ [ "minecraft:camel" ], + [ + "minecraft:armadillo" + ], [ "minecraft:turtle" ], @@ -5219,7 +5314,8 @@ "translate": "advancements.husbandry.breed_an_animal.description" }, "icon": { - "item": "minecraft:wheat" + "count": 1, + "id": "minecraft:wheat" }, "title": { "translate": "advancements.husbandry.breed_an_animal.title" @@ -5243,7 +5339,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:all_black" } } @@ -5260,7 +5356,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:black" } } @@ -5277,7 +5373,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:british_shorthair" } } @@ -5294,7 +5390,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:calico" } } @@ -5311,7 +5407,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:jellie" } } @@ -5328,7 +5424,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:persian" } } @@ -5345,7 +5441,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:ragdoll" } } @@ -5362,7 +5458,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:red" } } @@ -5379,7 +5475,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:siamese" } } @@ -5396,7 +5492,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:tabby" } } @@ -5413,7 +5509,7 @@ "entity": "this", "predicate": { "type_specific": { - "type": "cat", + "type": "minecraft:cat", "variant": "minecraft:white" } } @@ -5429,7 +5525,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:cod" + "count": 1, + "id": "minecraft:cod" }, "title": { "translate": "advancements.husbandry.complete_catalogue.title" @@ -5493,7 +5590,7 @@ } ], "item": { - "tag": "minecraft:sniffer_food" + "items": "#minecraft:sniffer_food" } }, "trigger": "minecraft:player_interacted_with_entity" @@ -5505,7 +5602,8 @@ }, "hidden": true, "icon": { - "item": "minecraft:torchflower_seeds" + "count": 1, + "id": "minecraft:torchflower_seeds" }, "title": { "translate": "advancements.husbandry.feed_snifflet.title" @@ -5524,9 +5622,7 @@ "cod": { "conditions": { "item": { - "items": [ - "minecraft:cod" - ] + "items": "minecraft:cod" } }, "trigger": "minecraft:fishing_rod_hooked" @@ -5534,9 +5630,7 @@ "pufferfish": { "conditions": { "item": { - "items": [ - "minecraft:pufferfish" - ] + "items": "minecraft:pufferfish" } }, "trigger": "minecraft:fishing_rod_hooked" @@ -5544,9 +5638,7 @@ "salmon": { "conditions": { "item": { - "items": [ - "minecraft:salmon" - ] + "items": "minecraft:salmon" } }, "trigger": "minecraft:fishing_rod_hooked" @@ -5554,9 +5646,7 @@ "tropical_fish": { "conditions": { "item": { - "items": [ - "minecraft:tropical_fish" - ] + "items": "minecraft:tropical_fish" } }, "trigger": "minecraft:fishing_rod_hooked" @@ -5567,8 +5657,8 @@ "translate": "advancements.husbandry.fishy_business.description" }, "icon": { - "item": "minecraft:fishing_rod", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:fishing_rod" }, "title": { "translate": "advancements.husbandry.fishy_business.title" @@ -5591,19 +5681,13 @@ "conditions": { "items": [ { - "items": [ - "minecraft:ochre_froglight" - ] + "items": "minecraft:ochre_froglight" }, { - "items": [ - "minecraft:pearlescent_froglight" - ] + "items": "minecraft:pearlescent_froglight" }, { - "items": [ - "minecraft:verdant_froglight" - ] + "items": "minecraft:verdant_froglight" } ] }, @@ -5616,7 +5700,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:verdant_froglight" + "count": 1, + "id": "minecraft:verdant_froglight" }, "title": { "translate": "advancements.husbandry.froglights.title" @@ -5652,7 +5737,8 @@ "translate": "advancements.husbandry.kill_axolotl_target.description" }, "icon": { - "item": "minecraft:tropical_fish_bucket" + "count": 1, + "id": "minecraft:tropical_fish_bucket" }, "title": { "translate": "advancements.husbandry.kill_axolotl_target.title" @@ -5677,16 +5763,14 @@ "predicate": { "type": "minecraft:frog", "type_specific": { - "type": "frog", + "type": "minecraft:frog", "variant": "minecraft:cold" } } } ], "item": { - "items": [ - "minecraft:lead" - ] + "items": "minecraft:lead" } }, "trigger": "minecraft:player_interacted_with_entity" @@ -5700,16 +5784,14 @@ "predicate": { "type": "minecraft:frog", "type_specific": { - "type": "frog", + "type": "minecraft:frog", "variant": "minecraft:temperate" } } } ], "item": { - "items": [ - "minecraft:lead" - ] + "items": "minecraft:lead" } }, "trigger": "minecraft:player_interacted_with_entity" @@ -5723,16 +5805,14 @@ "predicate": { "type": "minecraft:frog", "type_specific": { - "type": "frog", + "type": "minecraft:frog", "variant": "minecraft:warm" } } } ], "item": { - "items": [ - "minecraft:lead" - ] + "items": "minecraft:lead" } }, "trigger": "minecraft:player_interacted_with_entity" @@ -5743,7 +5823,8 @@ "translate": "advancements.husbandry.leash_all_frog_variants.description" }, "icon": { - "item": "minecraft:lead" + "count": 1, + "id": "minecraft:lead" }, "title": { "translate": "advancements.husbandry.leash_all_frog_variants.title" @@ -5772,16 +5853,14 @@ "condition": "minecraft:location_check", "predicate": { "block": { - "tag": "minecraft:all_signs" + "blocks": "#minecraft:all_signs" } } }, { "condition": "minecraft:match_tool", "predicate": { - "items": [ - "minecraft:glow_ink_sac" - ] + "items": "minecraft:glow_ink_sac" } } ] @@ -5794,7 +5873,8 @@ "translate": "advancements.husbandry.make_a_sign_glow.description" }, "icon": { - "item": "minecraft:glow_ink_sac" + "count": 1, + "id": "minecraft:glow_ink_sac" }, "title": { "translate": "advancements.husbandry.make_a_sign_glow.title" @@ -5814,9 +5894,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_hoe" - ] + "items": "minecraft:netherite_hoe" } ] }, @@ -5829,8 +5907,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:netherite_hoe", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:netherite_hoe" }, "title": { "translate": "advancements.husbandry.netherite_hoe.title" @@ -5853,9 +5931,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sniffer_egg" - ] + "items": "minecraft:sniffer_egg" } ] }, @@ -5868,7 +5944,8 @@ }, "hidden": true, "icon": { - "item": "minecraft:sniffer_egg" + "count": 1, + "id": "minecraft:sniffer_egg" }, "title": { "translate": "advancements.husbandry.obtain_sniffer_egg.title" @@ -5913,7 +5990,8 @@ }, "hidden": true, "icon": { - "item": "minecraft:pitcher_pod" + "count": 1, + "id": "minecraft:pitcher_pod" }, "title": { "translate": "advancements.husbandry.plant_any_sniffer_seed.title" @@ -6013,7 +6091,8 @@ "translate": "advancements.husbandry.plant_seed.description" }, "icon": { - "item": "minecraft:wheat" + "count": 1, + "id": "minecraft:wheat" }, "title": { "translate": "advancements.husbandry.plant_seed.title" @@ -6032,6 +6111,94 @@ ], "sends_telemetry_event": true }, + "minecraft:husbandry/remove_wolf_armor": { + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "remove_wolf_armor": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wolf" + } + } + ], + "item": { + "items": "minecraft:shears" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.remove_wolf_armor.description" + }, + "icon": { + "count": 1, + "id": "minecraft:shears" + }, + "title": { + "translate": "advancements.husbandry.remove_wolf_armor.title" + } + }, + "requirements": [ + [ + "remove_wolf_armor" + ] + ], + "sends_telemetry_event": true + }, + "minecraft:husbandry/repair_wolf_armor": { + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "repair_wolf_armor": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wolf", + "equipment": { + "body": { + "components": { + "minecraft:damage": 0 + }, + "items": "minecraft:wolf_armor" + } + } + } + } + ], + "item": { + "items": "minecraft:armadillo_scute" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.repair_wolf_armor.description" + }, + "icon": { + "count": 1, + "id": "minecraft:wolf_armor" + }, + "title": { + "translate": "advancements.husbandry.repair_wolf_armor.title" + } + }, + "requirements": [ + [ + "repair_wolf_armor" + ] + ], + "sends_telemetry_event": true + }, "minecraft:husbandry/ride_a_boat_with_a_goat": { "parent": "minecraft:husbandry/root", "criteria": { @@ -6060,7 +6227,8 @@ "translate": "advancements.husbandry.ride_a_boat_with_a_goat.description" }, "icon": { - "item": "minecraft:oak_boat" + "count": 1, + "id": "minecraft:oak_boat" }, "title": { "translate": "advancements.husbandry.ride_a_boat_with_a_goat.title" @@ -6086,7 +6254,8 @@ "translate": "advancements.husbandry.root.description" }, "icon": { - "item": "minecraft:hay_block" + "count": 1, + "id": "minecraft:hay_block" }, "show_toast": false, "title": { @@ -6110,7 +6279,7 @@ "condition": "minecraft:location_check", "predicate": { "block": { - "tag": "minecraft:beehives" + "blocks": "#minecraft:beehives" }, "smokey": true } @@ -6118,9 +6287,7 @@ { "condition": "minecraft:match_tool", "predicate": { - "items": [ - "minecraft:glass_bottle" - ] + "items": "minecraft:glass_bottle" } } ] @@ -6133,7 +6300,8 @@ "translate": "advancements.husbandry.safely_harvest_honey.description" }, "icon": { - "item": "minecraft:honey_bottle" + "count": 1, + "id": "minecraft:honey_bottle" }, "title": { "translate": "advancements.husbandry.safely_harvest_honey.title" @@ -6153,14 +6321,16 @@ "conditions": { "block": "minecraft:bee_nest", "item": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 + "predicates": { + "minecraft:enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } } - } - ] + ] + } }, "num_bees_inside": 3 }, @@ -6172,7 +6342,8 @@ "translate": "advancements.husbandry.silk_touch_nest.description" }, "icon": { - "item": "minecraft:bee_nest" + "count": 1, + "id": "minecraft:bee_nest" }, "title": { "translate": "advancements.husbandry.silk_touch_nest.title" @@ -6191,9 +6362,7 @@ "cod_bucket": { "conditions": { "item": { - "items": [ - "minecraft:cod_bucket" - ] + "items": "minecraft:cod_bucket" } }, "trigger": "minecraft:filled_bucket" @@ -6201,9 +6370,7 @@ "pufferfish_bucket": { "conditions": { "item": { - "items": [ - "minecraft:pufferfish_bucket" - ] + "items": "minecraft:pufferfish_bucket" } }, "trigger": "minecraft:filled_bucket" @@ -6211,9 +6378,7 @@ "salmon_bucket": { "conditions": { "item": { - "items": [ - "minecraft:salmon_bucket" - ] + "items": "minecraft:salmon_bucket" } }, "trigger": "minecraft:filled_bucket" @@ -6221,9 +6386,7 @@ "tropical_fish_bucket": { "conditions": { "item": { - "items": [ - "minecraft:tropical_fish_bucket" - ] + "items": "minecraft:tropical_fish_bucket" } }, "trigger": "minecraft:filled_bucket" @@ -6234,7 +6397,8 @@ "translate": "advancements.husbandry.tactical_fishing.description" }, "icon": { - "item": "minecraft:pufferfish_bucket" + "count": 1, + "id": "minecraft:pufferfish_bucket" }, "title": { "translate": "advancements.husbandry.tactical_fishing.title" @@ -6256,9 +6420,7 @@ "tadpole_bucket": { "conditions": { "item": { - "items": [ - "minecraft:tadpole_bucket" - ] + "items": "minecraft:tadpole_bucket" } }, "trigger": "minecraft:filled_bucket" @@ -6269,7 +6431,8 @@ "translate": "advancements.husbandry.tadpole_in_a_bucket.description" }, "icon": { - "item": "minecraft:tadpole_bucket" + "count": 1, + "id": "minecraft:tadpole_bucket" }, "title": { "translate": "advancements.husbandry.tadpole_in_a_bucket.title" @@ -6294,7 +6457,8 @@ "translate": "advancements.husbandry.tame_an_animal.description" }, "icon": { - "item": "minecraft:lead" + "count": 1, + "id": "minecraft:lead" }, "title": { "translate": "advancements.husbandry.tame_an_animal.title" @@ -6381,8 +6545,8 @@ "translate": "advancements.husbandry.wax_off.description" }, "icon": { - "item": "minecraft:stone_axe", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:stone_axe" }, "title": { "translate": "advancements.husbandry.wax_off.title" @@ -6449,9 +6613,7 @@ { "condition": "minecraft:match_tool", "predicate": { - "items": [ - "minecraft:honeycomb" - ] + "items": "minecraft:honeycomb" } } ] @@ -6464,7 +6626,8 @@ "translate": "advancements.husbandry.wax_on.description" }, "icon": { - "item": "minecraft:honeycomb" + "count": 1, + "id": "minecraft:honeycomb" }, "title": { "translate": "advancements.husbandry.wax_on.title" @@ -6477,6 +6640,210 @@ ], "sends_telemetry_event": true }, + "minecraft:husbandry/whole_pack": { + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "minecraft:ashen": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:wolf", + "variant": "minecraft:ashen" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:black": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:wolf", + "variant": "minecraft:black" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:chestnut": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:wolf", + "variant": "minecraft:chestnut" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:pale": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:wolf", + "variant": "minecraft:pale" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:rusty": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:wolf", + "variant": "minecraft:rusty" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:snowy": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:wolf", + "variant": "minecraft:snowy" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:spotted": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:wolf", + "variant": "minecraft:spotted" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:striped": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:wolf", + "variant": "minecraft:striped" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:woods": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:wolf", + "variant": "minecraft:woods" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.whole_pack.description" + }, + "frame": "challenge", + "icon": { + "count": 1, + "id": "minecraft:bone" + }, + "title": { + "translate": "advancements.husbandry.whole_pack.title" + } + }, + "requirements": [ + [ + "minecraft:ashen" + ], + [ + "minecraft:black" + ], + [ + "minecraft:chestnut" + ], + [ + "minecraft:pale" + ], + [ + "minecraft:rusty" + ], + [ + "minecraft:snowy" + ], + [ + "minecraft:spotted" + ], + [ + "minecraft:striped" + ], + [ + "minecraft:woods" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true + }, "minecraft:nether/all_effects": { "parent": "minecraft:nether/all_potions", "criteria": { @@ -6522,7 +6889,8 @@ "frame": "challenge", "hidden": true, "icon": { - "item": "minecraft:bucket" + "count": 1, + "id": "minecraft:bucket" }, "title": { "translate": "advancements.nether.all_effects.title" @@ -6568,7 +6936,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:milk_bucket" + "count": 1, + "id": "minecraft:milk_bucket" }, "title": { "translate": "advancements.nether.all_potions.title" @@ -6596,7 +6965,8 @@ "translate": "advancements.nether.brew_potion.description" }, "icon": { - "item": "minecraft:potion" + "count": 1, + "id": "minecraft:potion" }, "title": { "translate": "advancements.nether.brew_potion.title" @@ -6619,9 +6989,7 @@ "condition": "minecraft:location_check", "predicate": { "block": { - "blocks": [ - "minecraft:respawn_anchor" - ], + "blocks": "minecraft:respawn_anchor", "state": { "charges": "4" } @@ -6631,9 +6999,7 @@ { "condition": "minecraft:match_tool", "predicate": { - "items": [ - "minecraft:glowstone" - ] + "items": "minecraft:glowstone" } } ] @@ -6646,7 +7012,8 @@ "translate": "advancements.nether.charge_respawn_anchor.description" }, "icon": { - "item": "minecraft:respawn_anchor" + "count": 1, + "id": "minecraft:respawn_anchor" }, "title": { "translate": "advancements.nether.charge_respawn_anchor.title" @@ -6676,7 +7043,8 @@ "translate": "advancements.nether.create_beacon.description" }, "icon": { - "item": "minecraft:beacon" + "count": 1, + "id": "minecraft:beacon" }, "title": { "translate": "advancements.nether.create_beacon.title" @@ -6705,7 +7073,8 @@ }, "frame": "goal", "icon": { - "item": "minecraft:beacon" + "count": 1, + "id": "minecraft:beacon" }, "title": { "translate": "advancements.nether.create_full_beacon.title" @@ -6736,7 +7105,7 @@ } ], "item": { - "tag": "minecraft:piglin_loved" + "items": "#minecraft:piglin_loved" }, "player": [ { @@ -6747,9 +7116,7 @@ "predicate": { "equipment": { "head": { - "items": [ - "minecraft:golden_helmet" - ] + "items": "minecraft:golden_helmet" } } } @@ -6763,9 +7130,7 @@ "predicate": { "equipment": { "chest": { - "items": [ - "minecraft:golden_chestplate" - ] + "items": "minecraft:golden_chestplate" } } } @@ -6779,9 +7144,7 @@ "predicate": { "equipment": { "legs": { - "items": [ - "minecraft:golden_leggings" - ] + "items": "minecraft:golden_leggings" } } } @@ -6795,9 +7158,7 @@ "predicate": { "equipment": { "feet": { - "items": [ - "minecraft:golden_boots" - ] + "items": "minecraft:golden_boots" } } } @@ -6822,9 +7183,7 @@ } ], "item": { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" }, "player": [ { @@ -6835,9 +7194,7 @@ "predicate": { "equipment": { "head": { - "items": [ - "minecraft:golden_helmet" - ] + "items": "minecraft:golden_helmet" } } } @@ -6851,9 +7208,7 @@ "predicate": { "equipment": { "chest": { - "items": [ - "minecraft:golden_chestplate" - ] + "items": "minecraft:golden_chestplate" } } } @@ -6867,9 +7222,7 @@ "predicate": { "equipment": { "legs": { - "items": [ - "minecraft:golden_leggings" - ] + "items": "minecraft:golden_leggings" } } } @@ -6883,9 +7236,7 @@ "predicate": { "equipment": { "feet": { - "items": [ - "minecraft:golden_boots" - ] + "items": "minecraft:golden_boots" } } } @@ -6901,7 +7252,8 @@ "translate": "advancements.nether.distract_piglin.description" }, "icon": { - "item": "minecraft:gold_ingot" + "count": 1, + "id": "minecraft:gold_ingot" }, "title": { "translate": "advancements.nether.distract_piglin.title" @@ -6926,7 +7278,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:basalt_deltas" + "biomes": "minecraft:basalt_deltas" } } } @@ -6942,7 +7294,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:crimson_forest" + "biomes": "minecraft:crimson_forest" } } } @@ -6958,7 +7310,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:nether_wastes" + "biomes": "minecraft:nether_wastes" } } } @@ -6974,7 +7326,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:soul_sand_valley" + "biomes": "minecraft:soul_sand_valley" } } } @@ -6990,7 +7342,7 @@ "entity": "this", "predicate": { "location": { - "biome": "minecraft:warped_forest" + "biomes": "minecraft:warped_forest" } } } @@ -7005,8 +7357,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:netherite_boots", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:netherite_boots" }, "title": { "translate": "advancements.nether.explore_nether.title" @@ -7054,7 +7406,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:map" + "count": 1, + "id": "minecraft:map" }, "title": { "translate": "advancements.nether.fast_travel.title" @@ -7081,7 +7434,7 @@ "entity": "this", "predicate": { "location": { - "structure": "minecraft:bastion_remnant" + "structures": "minecraft:bastion_remnant" } } } @@ -7095,7 +7448,8 @@ "translate": "advancements.nether.find_bastion.description" }, "icon": { - "item": "minecraft:polished_blackstone_bricks" + "count": 1, + "id": "minecraft:polished_blackstone_bricks" }, "title": { "translate": "advancements.nether.find_bastion.title" @@ -7119,7 +7473,7 @@ "entity": "this", "predicate": { "location": { - "structure": "minecraft:fortress" + "structures": "minecraft:fortress" } } } @@ -7133,7 +7487,8 @@ "translate": "advancements.nether.find_fortress.description" }, "icon": { - "item": "minecraft:nether_bricks" + "count": 1, + "id": "minecraft:nether_bricks" }, "title": { "translate": "advancements.nether.find_fortress.title" @@ -7153,9 +7508,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:wither_skeleton_skull" - ] + "items": "minecraft:wither_skeleton_skull" } ] }, @@ -7167,7 +7520,8 @@ "translate": "advancements.nether.get_wither_skull.description" }, "icon": { - "item": "minecraft:wither_skeleton_skull" + "count": 1, + "id": "minecraft:wither_skeleton_skull" }, "title": { "translate": "advancements.nether.get_wither_skull.title" @@ -7213,7 +7567,8 @@ "translate": "advancements.nether.loot_bastion.description" }, "icon": { - "item": "minecraft:chest" + "count": 1, + "id": "minecraft:chest" }, "title": { "translate": "advancements.nether.loot_bastion.title" @@ -7236,24 +7591,16 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_helmet" - ] + "items": "minecraft:netherite_helmet" }, { - "items": [ - "minecraft:netherite_chestplate" - ] + "items": "minecraft:netherite_chestplate" }, { - "items": [ - "minecraft:netherite_leggings" - ] + "items": "minecraft:netherite_leggings" }, { - "items": [ - "minecraft:netherite_boots" - ] + "items": "minecraft:netherite_boots" } ] }, @@ -7266,8 +7613,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:netherite_chestplate", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:netherite_chestplate" }, "title": { "translate": "advancements.nether.netherite_armor.title" @@ -7290,9 +7637,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:ancient_debris" - ] + "items": "minecraft:ancient_debris" } ] }, @@ -7304,7 +7649,8 @@ "translate": "advancements.nether.obtain_ancient_debris.description" }, "icon": { - "item": "minecraft:ancient_debris" + "count": 1, + "id": "minecraft:ancient_debris" }, "title": { "translate": "advancements.nether.obtain_ancient_debris.title" @@ -7324,9 +7670,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blaze_rod" - ] + "items": "minecraft:blaze_rod" } ] }, @@ -7338,7 +7682,8 @@ "translate": "advancements.nether.obtain_blaze_rod.description" }, "icon": { - "item": "minecraft:blaze_rod" + "count": 1, + "id": "minecraft:blaze_rod" }, "title": { "translate": "advancements.nether.obtain_blaze_rod.title" @@ -7358,9 +7703,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crying_obsidian" - ] + "items": "minecraft:crying_obsidian" } ] }, @@ -7372,7 +7715,8 @@ "translate": "advancements.nether.obtain_crying_obsidian.description" }, "icon": { - "item": "minecraft:crying_obsidian" + "count": 1, + "id": "minecraft:crying_obsidian" }, "title": { "translate": "advancements.nether.obtain_crying_obsidian.title" @@ -7420,7 +7764,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:fire_charge" + "count": 1, + "id": "minecraft:fire_charge" }, "title": { "translate": "advancements.nether.return_to_sender.title" @@ -7442,9 +7787,7 @@ "used_warped_fungus_on_a_stick": { "conditions": { "item": { - "items": [ - "minecraft:warped_fungus_on_a_stick" - ] + "items": "minecraft:warped_fungus_on_a_stick" }, "player": [ { @@ -7466,8 +7809,8 @@ "translate": "advancements.nether.ride_strider.description" }, "icon": { - "item": "minecraft:warped_fungus_on_a_stick", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:warped_fungus_on_a_stick" }, "title": { "translate": "advancements.nether.ride_strider.title" @@ -7513,8 +7856,8 @@ "translate": "advancements.nether.ride_strider_in_overworld_lava.description" }, "icon": { - "item": "minecraft:warped_fungus_on_a_stick", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:warped_fungus_on_a_stick" }, "title": { "translate": "advancements.nether.ride_strider_in_overworld_lava.title" @@ -7543,7 +7886,8 @@ "translate": "advancements.nether.root.description" }, "icon": { - "item": "minecraft:red_nether_bricks" + "count": 1, + "id": "minecraft:red_nether_bricks" }, "show_toast": false, "title": { @@ -7580,7 +7924,8 @@ "translate": "advancements.nether.summon_wither.description" }, "icon": { - "item": "minecraft:nether_star" + "count": 1, + "id": "minecraft:nether_star" }, "title": { "translate": "advancements.nether.summon_wither.title" @@ -7620,7 +7965,8 @@ }, "frame": "challenge", "icon": { - "item": "minecraft:ghast_tear" + "count": 1, + "id": "minecraft:ghast_tear" }, "title": { "translate": "advancements.nether.uneasy_alliance.title" @@ -7646,18 +7992,14 @@ "condition": "minecraft:location_check", "predicate": { "block": { - "blocks": [ - "minecraft:lodestone" - ] + "blocks": "minecraft:lodestone" } } }, { "condition": "minecraft:match_tool", "predicate": { - "items": [ - "minecraft:compass" - ] + "items": "minecraft:compass" } } ] @@ -7670,7 +8012,8 @@ "translate": "advancements.nether.use_lodestone.description" }, "icon": { - "item": "minecraft:lodestone" + "count": 1, + "id": "minecraft:lodestone" }, "title": { "translate": "advancements.nether.use_lodestone.title" @@ -7708,7 +8051,8 @@ }, "frame": "goal", "icon": { - "item": "minecraft:golden_apple" + "count": 1, + "id": "minecraft:golden_apple" }, "title": { "translate": "advancements.story.cure_zombie_villager.title" @@ -7746,8 +8090,8 @@ "translate": "advancements.story.deflect_arrow.description" }, "icon": { - "item": "minecraft:shield", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:shield" }, "title": { "translate": "advancements.story.deflect_arrow.title" @@ -7772,7 +8116,8 @@ "translate": "advancements.story.enchant_item.description" }, "icon": { - "item": "minecraft:enchanted_book" + "count": 1, + "id": "minecraft:enchanted_book" }, "title": { "translate": "advancements.story.enchant_item.title" @@ -7800,7 +8145,8 @@ "translate": "advancements.story.enter_the_end.description" }, "icon": { - "item": "minecraft:end_stone" + "count": 1, + "id": "minecraft:end_stone" }, "title": { "translate": "advancements.story.enter_the_end.title" @@ -7828,8 +8174,8 @@ "translate": "advancements.story.enter_the_nether.description" }, "icon": { - "item": "minecraft:flint_and_steel", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:flint_and_steel" }, "title": { "translate": "advancements.story.enter_the_nether.title" @@ -7853,7 +8199,7 @@ "entity": "this", "predicate": { "location": { - "structure": "minecraft:stronghold" + "structures": "minecraft:stronghold" } } } @@ -7867,7 +8213,8 @@ "translate": "advancements.story.follow_ender_eye.description" }, "icon": { - "item": "minecraft:ender_eye" + "count": 1, + "id": "minecraft:ender_eye" }, "title": { "translate": "advancements.story.follow_ender_eye.title" @@ -7887,9 +8234,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:obsidian" - ] + "items": "minecraft:obsidian" } ] }, @@ -7901,7 +8246,8 @@ "translate": "advancements.story.form_obsidian.description" }, "icon": { - "item": "minecraft:obsidian" + "count": 1, + "id": "minecraft:obsidian" }, "title": { "translate": "advancements.story.form_obsidian.title" @@ -7921,9 +8267,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_pickaxe" - ] + "items": "minecraft:iron_pickaxe" } ] }, @@ -7935,8 +8279,8 @@ "translate": "advancements.story.iron_tools.description" }, "icon": { - "item": "minecraft:iron_pickaxe", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:iron_pickaxe" }, "title": { "translate": "advancements.story.iron_tools.title" @@ -7956,9 +8300,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lava_bucket" - ] + "items": "minecraft:lava_bucket" } ] }, @@ -7970,7 +8312,8 @@ "translate": "advancements.story.lava_bucket.description" }, "icon": { - "item": "minecraft:lava_bucket" + "count": 1, + "id": "minecraft:lava_bucket" }, "title": { "translate": "advancements.story.lava_bucket.title" @@ -7990,9 +8333,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -8004,7 +8345,8 @@ "translate": "advancements.story.mine_diamond.description" }, "icon": { - "item": "minecraft:diamond" + "count": 1, + "id": "minecraft:diamond" }, "title": { "translate": "advancements.story.mine_diamond.title" @@ -8024,7 +8366,7 @@ "conditions": { "items": [ { - "tag": "minecraft:stone_tool_materials" + "items": "#minecraft:stone_tool_materials" } ] }, @@ -8036,8 +8378,8 @@ "translate": "advancements.story.mine_stone.description" }, "icon": { - "item": "minecraft:wooden_pickaxe", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:wooden_pickaxe" }, "title": { "translate": "advancements.story.mine_stone.title" @@ -8057,9 +8399,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_boots" - ] + "items": "minecraft:iron_boots" } ] }, @@ -8069,9 +8409,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_chestplate" - ] + "items": "minecraft:iron_chestplate" } ] }, @@ -8081,9 +8419,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_helmet" - ] + "items": "minecraft:iron_helmet" } ] }, @@ -8093,9 +8429,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_leggings" - ] + "items": "minecraft:iron_leggings" } ] }, @@ -8107,8 +8441,8 @@ "translate": "advancements.story.obtain_armor.description" }, "icon": { - "item": "minecraft:iron_chestplate", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:iron_chestplate" }, "title": { "translate": "advancements.story.obtain_armor.title" @@ -8130,9 +8464,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crafting_table" - ] + "items": "minecraft:crafting_table" } ] }, @@ -8146,7 +8478,8 @@ "translate": "advancements.story.root.description" }, "icon": { - "item": "minecraft:grass_block" + "count": 1, + "id": "minecraft:grass_block" }, "show_toast": false, "title": { @@ -8167,9 +8500,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond_boots" - ] + "items": "minecraft:diamond_boots" } ] }, @@ -8179,9 +8510,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond_chestplate" - ] + "items": "minecraft:diamond_chestplate" } ] }, @@ -8191,9 +8520,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond_helmet" - ] + "items": "minecraft:diamond_helmet" } ] }, @@ -8203,9 +8530,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond_leggings" - ] + "items": "minecraft:diamond_leggings" } ] }, @@ -8217,8 +8542,8 @@ "translate": "advancements.story.shiny_gear.description" }, "icon": { - "item": "minecraft:diamond_chestplate", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:diamond_chestplate" }, "title": { "translate": "advancements.story.shiny_gear.title" @@ -8241,9 +8566,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -8255,7 +8578,8 @@ "translate": "advancements.story.smelt_iron.description" }, "icon": { - "item": "minecraft:iron_ingot" + "count": 1, + "id": "minecraft:iron_ingot" }, "title": { "translate": "advancements.story.smelt_iron.title" @@ -8275,9 +8599,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone_pickaxe" - ] + "items": "minecraft:stone_pickaxe" } ] }, @@ -8289,8 +8611,8 @@ "translate": "advancements.story.upgrade_tools.description" }, "icon": { - "item": "minecraft:stone_pickaxe", - "nbt": "{Damage:0}" + "count": 1, + "id": "minecraft:stone_pickaxe" }, "title": { "translate": "advancements.story.upgrade_tools.title" @@ -8310,9 +8632,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blaze_rod" - ] + "items": "minecraft:blaze_rod" } ] }, @@ -8344,9 +8664,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blaze_rod" - ] + "items": "minecraft:blaze_rod" } ] }, @@ -8384,9 +8702,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:water_bucket" - ] + "items": "minecraft:water_bucket" } ] }, @@ -8412,9 +8728,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spider_eye" - ] + "items": "minecraft:spider_eye" } ] }, @@ -8446,9 +8760,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -8480,9 +8792,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:melon_slice" - ] + "items": "minecraft:melon_slice" } ] }, @@ -8514,9 +8824,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_nugget" - ] + "items": "minecraft:gold_nugget" } ] }, @@ -8548,9 +8856,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blaze_powder" - ] + "items": "minecraft:blaze_powder" } ] }, @@ -8582,7 +8888,7 @@ "conditions": { "items": [ { - "tag": "minecraft:acacia_logs" + "items": "#minecraft:acacia_logs" } ] }, @@ -8614,9 +8920,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:acacia_planks" - ] + "items": "minecraft:acacia_planks" } ] }, @@ -8648,9 +8952,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:acacia_planks" - ] + "items": "minecraft:acacia_planks" } ] }, @@ -8682,9 +8984,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:acacia_log" - ] + "items": "minecraft:acacia_log" } ] }, @@ -8716,9 +9016,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:amethyst_shard" - ] + "items": "minecraft:amethyst_shard" } ] }, @@ -8750,9 +9048,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -8784,9 +9080,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:andesite" - ] + "items": "minecraft:andesite" } ] }, @@ -8818,9 +9112,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:andesite" - ] + "items": "minecraft:andesite" } ] }, @@ -8852,9 +9144,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:andesite" - ] + "items": "minecraft:andesite" } ] }, @@ -8886,9 +9176,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:andesite" - ] + "items": "minecraft:andesite" } ] }, @@ -8920,9 +9208,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo" - ] + "items": "minecraft:bamboo" } ] }, @@ -8954,9 +9240,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_mosaic" - ] + "items": "minecraft:bamboo_mosaic" } ] }, @@ -8988,9 +9272,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_mosaic" - ] + "items": "minecraft:bamboo_mosaic" } ] }, @@ -9022,7 +9304,7 @@ "conditions": { "items": [ { - "tag": "minecraft:bamboo_blocks" + "items": "#minecraft:bamboo_blocks" } ] }, @@ -9054,9 +9336,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_planks" - ] + "items": "minecraft:bamboo_planks" } ] }, @@ -9088,9 +9368,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_planks" - ] + "items": "minecraft:bamboo_planks" } ] }, @@ -9122,7 +9400,7 @@ "conditions": { "items": [ { - "tag": "minecraft:birch_logs" + "items": "#minecraft:birch_logs" } ] }, @@ -9154,9 +9432,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:birch_planks" - ] + "items": "minecraft:birch_planks" } ] }, @@ -9188,9 +9464,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:birch_planks" - ] + "items": "minecraft:birch_planks" } ] }, @@ -9222,9 +9496,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:birch_log" - ] + "items": "minecraft:birch_log" } ] }, @@ -9256,9 +9528,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -9290,9 +9560,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -9324,9 +9592,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -9358,9 +9624,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -9392,9 +9656,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -9404,9 +9666,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -9439,9 +9699,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -9473,9 +9731,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -9507,9 +9763,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -9519,9 +9773,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -9554,9 +9806,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:packed_ice" - ] + "items": "minecraft:packed_ice" } ] }, @@ -9588,9 +9838,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -9622,9 +9870,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -9656,9 +9902,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bone_meal" - ] + "items": "minecraft:bone_meal" } ] }, @@ -9690,9 +9934,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:book" - ] + "items": "minecraft:book" } ] }, @@ -9724,9 +9966,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brick" - ] + "items": "minecraft:brick" } ] }, @@ -9758,9 +9998,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bricks" - ] + "items": "minecraft:bricks" } ] }, @@ -9792,9 +10030,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bricks" - ] + "items": "minecraft:bricks" } ] }, @@ -9826,9 +10062,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bricks" - ] + "items": "minecraft:bricks" } ] }, @@ -9860,9 +10094,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bricks" - ] + "items": "minecraft:bricks" } ] }, @@ -9894,9 +10126,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -9906,9 +10136,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -9941,9 +10169,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -9975,9 +10201,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -10009,7 +10233,7 @@ "conditions": { "items": [ { - "tag": "minecraft:cherry_logs" + "items": "#minecraft:cherry_logs" } ] }, @@ -10041,9 +10265,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cherry_planks" - ] + "items": "minecraft:cherry_planks" } ] }, @@ -10075,9 +10297,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cherry_planks" - ] + "items": "minecraft:cherry_planks" } ] }, @@ -10109,9 +10329,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cherry_log" - ] + "items": "minecraft:cherry_log" } ] }, @@ -10143,9 +10361,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:book" - ] + "items": "minecraft:book" } ] }, @@ -10177,9 +10393,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate_slab" - ] + "items": "minecraft:cobbled_deepslate_slab" } ] }, @@ -10211,9 +10425,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -10245,9 +10457,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_brick_slab" - ] + "items": "minecraft:nether_brick_slab" } ] }, @@ -10279,9 +10489,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_bricks" - ] + "items": "minecraft:nether_bricks" } ] }, @@ -10313,9 +10521,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone_slab" - ] + "items": "minecraft:polished_blackstone_slab" } ] }, @@ -10347,9 +10553,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -10381,9 +10585,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -10415,9 +10617,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chiseled_quartz_block" - ] + "items": "minecraft:chiseled_quartz_block" } ] }, @@ -10427,9 +10627,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -10439,9 +10637,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_pillar" - ] + "items": "minecraft:quartz_pillar" } ] }, @@ -10475,9 +10671,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -10509,9 +10703,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chiseled_red_sandstone" - ] + "items": "minecraft:chiseled_red_sandstone" } ] }, @@ -10521,9 +10713,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_red_sandstone" - ] + "items": "minecraft:cut_red_sandstone" } ] }, @@ -10533,9 +10723,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -10569,9 +10757,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -10603,9 +10789,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone_slab" - ] + "items": "minecraft:sandstone_slab" } ] }, @@ -10637,9 +10821,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -10671,7 +10853,7 @@ "conditions": { "items": [ { - "tag": "minecraft:stone_bricks" + "items": "#minecraft:stone_bricks" } ] }, @@ -10703,9 +10885,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone_bricks" - ] + "items": "minecraft:stone_bricks" } ] }, @@ -10737,9 +10917,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -10771,9 +10949,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:clay_ball" - ] + "items": "minecraft:clay_ball" } ] }, @@ -10805,9 +10981,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:coal" - ] + "items": "minecraft:coal" } ] }, @@ -10839,9 +11013,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -10873,9 +11045,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -10907,9 +11077,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -10941,9 +11109,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -10975,9 +11141,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -11009,9 +11173,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobblestone" - ] + "items": "minecraft:cobblestone" } ] }, @@ -11043,9 +11205,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobblestone" - ] + "items": "minecraft:cobblestone" } ] }, @@ -11077,9 +11237,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobblestone" - ] + "items": "minecraft:cobblestone" } ] }, @@ -11111,9 +11269,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobblestone" - ] + "items": "minecraft:cobblestone" } ] }, @@ -11145,9 +11301,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_ingot" - ] + "items": "minecraft:copper_ingot" } ] }, @@ -11179,9 +11333,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -11213,9 +11365,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_tiles" - ] + "items": "minecraft:deepslate_tiles" } ] }, @@ -11247,9 +11397,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_bricks" - ] + "items": "minecraft:nether_bricks" } ] }, @@ -11281,9 +11429,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone_bricks" - ] + "items": "minecraft:polished_blackstone_bricks" } ] }, @@ -11315,9 +11461,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone_bricks" - ] + "items": "minecraft:stone_bricks" } ] }, @@ -11349,9 +11493,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crimson_stem" - ] + "items": "minecraft:crimson_stem" } ] }, @@ -11383,7 +11525,7 @@ "conditions": { "items": [ { - "tag": "minecraft:crimson_stems" + "items": "#minecraft:crimson_stems" } ] }, @@ -11415,9 +11557,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crimson_planks" - ] + "items": "minecraft:crimson_planks" } ] }, @@ -11449,9 +11589,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crimson_planks" - ] + "items": "minecraft:crimson_planks" } ] }, @@ -11483,9 +11621,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_block" - ] + "items": "minecraft:copper_block" } ] }, @@ -11517,9 +11653,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_block" - ] + "items": "minecraft:copper_block" } ] }, @@ -11551,9 +11685,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_copper" - ] + "items": "minecraft:cut_copper" } ] }, @@ -11585,9 +11717,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_block" - ] + "items": "minecraft:copper_block" } ] }, @@ -11619,9 +11749,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_copper" - ] + "items": "minecraft:cut_copper" } ] }, @@ -11653,9 +11781,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_copper" - ] + "items": "minecraft:cut_copper" } ] }, @@ -11687,9 +11813,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_block" - ] + "items": "minecraft:copper_block" } ] }, @@ -11721,9 +11845,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_copper" - ] + "items": "minecraft:cut_copper" } ] }, @@ -11755,9 +11877,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -11789,9 +11909,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -11823,9 +11941,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_red_sandstone" - ] + "items": "minecraft:cut_red_sandstone" } ] }, @@ -11857,9 +11973,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_red_sandstone" - ] + "items": "minecraft:cut_red_sandstone" } ] }, @@ -11891,9 +12005,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -11925,9 +12037,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -11959,9 +12069,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -11993,9 +12101,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_sandstone" - ] + "items": "minecraft:cut_sandstone" } ] }, @@ -12027,9 +12133,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_sandstone" - ] + "items": "minecraft:cut_sandstone" } ] }, @@ -12061,9 +12165,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -12095,9 +12197,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -12107,9 +12207,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -12142,9 +12240,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -12176,9 +12272,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -12210,7 +12304,7 @@ "conditions": { "items": [ { - "tag": "minecraft:dark_oak_logs" + "items": "#minecraft:dark_oak_logs" } ] }, @@ -12242,9 +12336,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_oak_planks" - ] + "items": "minecraft:dark_oak_planks" } ] }, @@ -12276,9 +12368,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_oak_planks" - ] + "items": "minecraft:dark_oak_planks" } ] }, @@ -12310,9 +12400,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_oak_log" - ] + "items": "minecraft:dark_oak_log" } ] }, @@ -12344,9 +12432,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine_shard" - ] + "items": "minecraft:prismarine_shard" } ] }, @@ -12378,9 +12464,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_prismarine" - ] + "items": "minecraft:dark_prismarine" } ] }, @@ -12412,9 +12496,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_prismarine" - ] + "items": "minecraft:dark_prismarine" } ] }, @@ -12446,9 +12528,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_prismarine" - ] + "items": "minecraft:dark_prismarine" } ] }, @@ -12480,9 +12560,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_prismarine" - ] + "items": "minecraft:dark_prismarine" } ] }, @@ -12514,9 +12592,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -12548,9 +12624,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -12582,9 +12656,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -12616,9 +12688,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -12650,9 +12720,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -12684,9 +12752,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -12718,9 +12784,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -12752,9 +12816,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -12786,9 +12848,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -12820,9 +12880,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -12854,9 +12912,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -12888,9 +12944,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -12922,9 +12976,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -12956,9 +13008,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -12990,9 +13040,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -13024,9 +13072,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -13058,9 +13104,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_tiles" - ] + "items": "minecraft:deepslate_tiles" } ] }, @@ -13092,9 +13136,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -13126,9 +13168,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -13160,9 +13200,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_tiles" - ] + "items": "minecraft:deepslate_tiles" } ] }, @@ -13194,9 +13232,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -13228,9 +13264,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_tiles" - ] + "items": "minecraft:deepslate_tiles" } ] }, @@ -13262,9 +13296,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -13296,9 +13328,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -13330,9 +13360,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_tiles" - ] + "items": "minecraft:deepslate_tiles" } ] }, @@ -13364,9 +13392,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -13398,9 +13424,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -13432,9 +13456,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz" - ] + "items": "minecraft:quartz" } ] }, @@ -13466,9 +13488,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -13500,9 +13520,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -13534,9 +13552,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -13568,9 +13584,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -13602,9 +13616,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dried_kelp" - ] + "items": "minecraft:dried_kelp" } ] }, @@ -13636,9 +13648,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pointed_dripstone" - ] + "items": "minecraft:pointed_dripstone" } ] }, @@ -13670,9 +13680,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_dye" - ] + "items": "minecraft:black_dye" } ] }, @@ -13704,9 +13712,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_dye" - ] + "items": "minecraft:black_dye" } ] }, @@ -13738,9 +13744,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_dye" - ] + "items": "minecraft:black_dye" } ] }, @@ -13772,9 +13776,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_dye" - ] + "items": "minecraft:blue_dye" } ] }, @@ -13806,9 +13808,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_dye" - ] + "items": "minecraft:blue_dye" } ] }, @@ -13840,9 +13840,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_dye" - ] + "items": "minecraft:blue_dye" } ] }, @@ -13874,9 +13872,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_dye" - ] + "items": "minecraft:brown_dye" } ] }, @@ -13908,9 +13904,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_dye" - ] + "items": "minecraft:brown_dye" } ] }, @@ -13942,9 +13936,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_dye" - ] + "items": "minecraft:brown_dye" } ] }, @@ -13976,9 +13968,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cyan_dye" - ] + "items": "minecraft:cyan_dye" } ] }, @@ -14010,9 +14000,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cyan_dye" - ] + "items": "minecraft:cyan_dye" } ] }, @@ -14044,9 +14032,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cyan_dye" - ] + "items": "minecraft:cyan_dye" } ] }, @@ -14078,9 +14064,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_dye" - ] + "items": "minecraft:gray_dye" } ] }, @@ -14112,9 +14096,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_dye" - ] + "items": "minecraft:gray_dye" } ] }, @@ -14146,9 +14128,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_dye" - ] + "items": "minecraft:gray_dye" } ] }, @@ -14180,9 +14160,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_dye" - ] + "items": "minecraft:green_dye" } ] }, @@ -14214,9 +14192,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_dye" - ] + "items": "minecraft:green_dye" } ] }, @@ -14248,9 +14224,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_dye" - ] + "items": "minecraft:green_dye" } ] }, @@ -14282,9 +14256,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_blue_dye" - ] + "items": "minecraft:light_blue_dye" } ] }, @@ -14316,9 +14288,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_blue_dye" - ] + "items": "minecraft:light_blue_dye" } ] }, @@ -14350,9 +14320,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_blue_dye" - ] + "items": "minecraft:light_blue_dye" } ] }, @@ -14384,9 +14352,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_gray_dye" - ] + "items": "minecraft:light_gray_dye" } ] }, @@ -14418,9 +14384,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_gray_dye" - ] + "items": "minecraft:light_gray_dye" } ] }, @@ -14452,9 +14416,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_gray_dye" - ] + "items": "minecraft:light_gray_dye" } ] }, @@ -14486,9 +14448,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lime_dye" - ] + "items": "minecraft:lime_dye" } ] }, @@ -14520,9 +14480,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lime_dye" - ] + "items": "minecraft:lime_dye" } ] }, @@ -14554,9 +14512,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lime_dye" - ] + "items": "minecraft:lime_dye" } ] }, @@ -14588,9 +14544,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magenta_dye" - ] + "items": "minecraft:magenta_dye" } ] }, @@ -14622,9 +14576,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magenta_dye" - ] + "items": "minecraft:magenta_dye" } ] }, @@ -14656,9 +14608,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magenta_dye" - ] + "items": "minecraft:magenta_dye" } ] }, @@ -14690,9 +14640,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_dye" - ] + "items": "minecraft:orange_dye" } ] }, @@ -14724,9 +14672,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_dye" - ] + "items": "minecraft:orange_dye" } ] }, @@ -14758,9 +14704,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_dye" - ] + "items": "minecraft:orange_dye" } ] }, @@ -14792,9 +14736,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_dye" - ] + "items": "minecraft:pink_dye" } ] }, @@ -14826,9 +14768,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_dye" - ] + "items": "minecraft:pink_dye" } ] }, @@ -14860,9 +14800,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_dye" - ] + "items": "minecraft:pink_dye" } ] }, @@ -14894,9 +14832,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_dye" - ] + "items": "minecraft:purple_dye" } ] }, @@ -14928,9 +14864,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_dye" - ] + "items": "minecraft:purple_dye" } ] }, @@ -14962,9 +14896,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_dye" - ] + "items": "minecraft:purple_dye" } ] }, @@ -14996,9 +14928,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_dye" - ] + "items": "minecraft:red_dye" } ] }, @@ -15030,9 +14960,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_dye" - ] + "items": "minecraft:red_dye" } ] }, @@ -15064,9 +14992,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_dye" - ] + "items": "minecraft:red_dye" } ] }, @@ -15098,9 +15024,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -15132,9 +15056,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -15166,9 +15088,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -15200,9 +15120,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_dye" - ] + "items": "minecraft:yellow_dye" } ] }, @@ -15234,9 +15152,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_dye" - ] + "items": "minecraft:yellow_dye" } ] }, @@ -15268,9 +15184,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_dye" - ] + "items": "minecraft:yellow_dye" } ] }, @@ -15302,9 +15216,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:emerald" - ] + "items": "minecraft:emerald" } ] }, @@ -15336,9 +15248,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone" - ] + "items": "minecraft:end_stone" } ] }, @@ -15370,9 +15280,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone" - ] + "items": "minecraft:end_stone" } ] }, @@ -15404,9 +15312,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone_bricks" - ] + "items": "minecraft:end_stone_bricks" } ] }, @@ -15438,9 +15344,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone_bricks" - ] + "items": "minecraft:end_stone_bricks" } ] }, @@ -15472,9 +15376,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone" - ] + "items": "minecraft:end_stone" } ] }, @@ -15506,9 +15408,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone_bricks" - ] + "items": "minecraft:end_stone_bricks" } ] }, @@ -15540,9 +15440,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone_bricks" - ] + "items": "minecraft:end_stone_bricks" } ] }, @@ -15574,9 +15472,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone" - ] + "items": "minecraft:end_stone" } ] }, @@ -15608,9 +15504,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_copper" - ] + "items": "minecraft:exposed_copper" } ] }, @@ -15642,9 +15536,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_copper" - ] + "items": "minecraft:exposed_copper" } ] }, @@ -15676,9 +15568,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_cut_copper" - ] + "items": "minecraft:exposed_cut_copper" } ] }, @@ -15710,9 +15600,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_copper" - ] + "items": "minecraft:exposed_copper" } ] }, @@ -15744,9 +15632,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_cut_copper" - ] + "items": "minecraft:exposed_cut_copper" } ] }, @@ -15778,9 +15664,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_cut_copper" - ] + "items": "minecraft:exposed_cut_copper" } ] }, @@ -15812,9 +15696,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_copper" - ] + "items": "minecraft:exposed_copper" } ] }, @@ -15846,9 +15728,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_cut_copper" - ] + "items": "minecraft:exposed_cut_copper" } ] }, @@ -15880,7 +15760,7 @@ "conditions": { "items": [ { - "tag": "minecraft:smelts_to_glass" + "items": "#minecraft:smelts_to_glass" } ] }, @@ -15912,9 +15792,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glowstone_dust" - ] + "items": "minecraft:glowstone_dust" } ] }, @@ -15946,9 +15824,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -15980,9 +15856,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz" - ] + "items": "minecraft:quartz" } ] }, @@ -16014,9 +15888,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:granite" - ] + "items": "minecraft:granite" } ] }, @@ -16048,9 +15920,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:granite" - ] + "items": "minecraft:granite" } ] }, @@ -16082,9 +15952,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:granite" - ] + "items": "minecraft:granite" } ] }, @@ -16116,9 +15984,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:granite" - ] + "items": "minecraft:granite" } ] }, @@ -16150,9 +16016,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -16162,9 +16026,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -16197,9 +16059,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -16231,9 +16091,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -16265,9 +16123,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -16277,9 +16133,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -16312,9 +16166,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -16346,9 +16198,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -16386,9 +16236,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:wheat" - ] + "items": "minecraft:wheat" } ] }, @@ -16414,9 +16262,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -16448,9 +16294,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:carved_pumpkin" - ] + "items": "minecraft:carved_pumpkin" } ] }, @@ -16482,7 +16326,7 @@ "conditions": { "items": [ { - "tag": "minecraft:jungle_logs" + "items": "#minecraft:jungle_logs" } ] }, @@ -16514,9 +16358,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:jungle_planks" - ] + "items": "minecraft:jungle_planks" } ] }, @@ -16548,9 +16390,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:jungle_planks" - ] + "items": "minecraft:jungle_planks" } ] }, @@ -16582,9 +16422,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:jungle_log" - ] + "items": "minecraft:jungle_log" } ] }, @@ -16616,9 +16454,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lapis_lazuli" - ] + "items": "minecraft:lapis_lazuli" } ] }, @@ -16650,9 +16486,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -16662,9 +16496,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -16697,9 +16529,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -16731,9 +16561,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -16765,9 +16593,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -16777,9 +16603,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -16812,9 +16636,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -16846,9 +16668,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -16880,9 +16700,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -16892,9 +16710,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -16927,9 +16743,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -16961,9 +16775,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -16995,9 +16807,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -17007,9 +16817,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -17042,9 +16850,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -17076,9 +16882,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -17110,9 +16914,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magma_cream" - ] + "items": "minecraft:magma_cream" } ] }, @@ -17144,7 +16946,7 @@ "conditions": { "items": [ { - "tag": "minecraft:mangrove_logs" + "items": "#minecraft:mangrove_logs" } ] }, @@ -17176,9 +16978,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_planks" - ] + "items": "minecraft:mangrove_planks" } ] }, @@ -17210,9 +17010,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_planks" - ] + "items": "minecraft:mangrove_planks" } ] }, @@ -17244,9 +17042,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_log" - ] + "items": "minecraft:mangrove_log" } ] }, @@ -17278,9 +17074,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:melon_slice" - ] + "items": "minecraft:melon_slice" } ] }, @@ -17312,9 +17106,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:moss_block" - ] + "items": "minecraft:moss_block" } ] }, @@ -17352,9 +17144,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:vine" - ] + "items": "minecraft:vine" } ] }, @@ -17380,9 +17170,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_cobblestone" - ] + "items": "minecraft:mossy_cobblestone" } ] }, @@ -17414,9 +17202,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_cobblestone" - ] + "items": "minecraft:mossy_cobblestone" } ] }, @@ -17448,9 +17234,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_cobblestone" - ] + "items": "minecraft:mossy_cobblestone" } ] }, @@ -17482,9 +17266,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_cobblestone" - ] + "items": "minecraft:mossy_cobblestone" } ] }, @@ -17516,9 +17298,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:moss_block" - ] + "items": "minecraft:moss_block" } ] }, @@ -17556,9 +17336,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:vine" - ] + "items": "minecraft:vine" } ] }, @@ -17584,9 +17362,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_stone_bricks" - ] + "items": "minecraft:mossy_stone_bricks" } ] }, @@ -17618,9 +17394,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_stone_bricks" - ] + "items": "minecraft:mossy_stone_bricks" } ] }, @@ -17652,9 +17426,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_stone_bricks" - ] + "items": "minecraft:mossy_stone_bricks" } ] }, @@ -17686,9 +17458,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_stone_bricks" - ] + "items": "minecraft:mossy_stone_bricks" } ] }, @@ -17720,9 +17490,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_roots" - ] + "items": "minecraft:mangrove_roots" } ] }, @@ -17754,9 +17522,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:packed_mud" - ] + "items": "minecraft:packed_mud" } ] }, @@ -17788,9 +17554,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mud_bricks" - ] + "items": "minecraft:mud_bricks" } ] }, @@ -17822,9 +17586,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mud_bricks" - ] + "items": "minecraft:mud_bricks" } ] }, @@ -17856,9 +17618,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mud_bricks" - ] + "items": "minecraft:mud_bricks" } ] }, @@ -17890,9 +17650,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mud_bricks" - ] + "items": "minecraft:mud_bricks" } ] }, @@ -17924,9 +17682,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -17958,9 +17714,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_brick" - ] + "items": "minecraft:nether_brick" } ] }, @@ -17992,9 +17746,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_bricks" - ] + "items": "minecraft:nether_bricks" } ] }, @@ -18026,9 +17778,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_bricks" - ] + "items": "minecraft:nether_bricks" } ] }, @@ -18060,9 +17810,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_bricks" - ] + "items": "minecraft:nether_bricks" } ] }, @@ -18094,9 +17842,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_bricks" - ] + "items": "minecraft:nether_bricks" } ] }, @@ -18128,9 +17874,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_wart" - ] + "items": "minecraft:nether_wart" } ] }, @@ -18162,7 +17906,7 @@ "conditions": { "items": [ { - "tag": "minecraft:oak_logs" + "items": "#minecraft:oak_logs" } ] }, @@ -18194,9 +17938,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oak_planks" - ] + "items": "minecraft:oak_planks" } ] }, @@ -18228,9 +17970,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oak_planks" - ] + "items": "minecraft:oak_planks" } ] }, @@ -18262,9 +18002,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oak_log" - ] + "items": "minecraft:oak_log" } ] }, @@ -18296,9 +18034,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -18308,9 +18044,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -18343,9 +18077,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -18377,9 +18109,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -18411,9 +18141,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_copper" - ] + "items": "minecraft:oxidized_copper" } ] }, @@ -18445,9 +18173,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_copper" - ] + "items": "minecraft:oxidized_copper" } ] }, @@ -18479,9 +18205,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_cut_copper" - ] + "items": "minecraft:oxidized_cut_copper" } ] }, @@ -18513,9 +18237,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_copper" - ] + "items": "minecraft:oxidized_copper" } ] }, @@ -18547,9 +18269,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_cut_copper" - ] + "items": "minecraft:oxidized_cut_copper" } ] }, @@ -18581,9 +18301,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_cut_copper" - ] + "items": "minecraft:oxidized_cut_copper" } ] }, @@ -18615,9 +18333,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_copper" - ] + "items": "minecraft:oxidized_copper" } ] }, @@ -18649,9 +18365,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_cut_copper" - ] + "items": "minecraft:oxidized_cut_copper" } ] }, @@ -18683,9 +18397,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:ice" - ] + "items": "minecraft:ice" } ] }, @@ -18717,9 +18429,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mud" - ] + "items": "minecraft:mud" } ] }, @@ -18751,9 +18461,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -18763,9 +18471,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -18798,9 +18504,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -18832,9 +18536,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -18866,9 +18568,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:andesite" - ] + "items": "minecraft:andesite" } ] }, @@ -18900,9 +18600,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:andesite" - ] + "items": "minecraft:andesite" } ] }, @@ -18934,9 +18632,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_andesite" - ] + "items": "minecraft:polished_andesite" } ] }, @@ -18968,9 +18664,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:andesite" - ] + "items": "minecraft:andesite" } ] }, @@ -19002,9 +18696,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_andesite" - ] + "items": "minecraft:polished_andesite" } ] }, @@ -19036,9 +18728,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_andesite" - ] + "items": "minecraft:polished_andesite" } ] }, @@ -19070,9 +18760,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:andesite" - ] + "items": "minecraft:andesite" } ] }, @@ -19104,9 +18792,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_andesite" - ] + "items": "minecraft:polished_andesite" } ] }, @@ -19138,9 +18824,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:basalt" - ] + "items": "minecraft:basalt" } ] }, @@ -19172,9 +18856,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:basalt" - ] + "items": "minecraft:basalt" } ] }, @@ -19206,9 +18888,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -19240,9 +18920,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -19274,9 +18952,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -19308,9 +18984,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -19342,9 +19016,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone_bricks" - ] + "items": "minecraft:polished_blackstone_bricks" } ] }, @@ -19376,9 +19048,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -19410,9 +19080,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone_bricks" - ] + "items": "minecraft:polished_blackstone_bricks" } ] }, @@ -19444,9 +19112,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -19478,9 +19144,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone_bricks" - ] + "items": "minecraft:polished_blackstone_bricks" } ] }, @@ -19512,9 +19176,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -19546,9 +19208,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone_bricks" - ] + "items": "minecraft:polished_blackstone_bricks" } ] }, @@ -19580,9 +19240,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -19614,9 +19272,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -19648,9 +19304,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -19682,9 +19336,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -19716,9 +19368,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -19750,9 +19400,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -19784,9 +19432,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -19818,9 +19464,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -19852,9 +19496,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -19886,9 +19528,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -19920,9 +19560,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -19954,9 +19592,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -19988,9 +19624,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -20022,9 +19656,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -20056,9 +19688,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -20090,9 +19720,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -20124,9 +19752,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -20158,9 +19784,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -20192,9 +19816,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_diorite" - ] + "items": "minecraft:polished_diorite" } ] }, @@ -20226,9 +19848,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -20260,9 +19880,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_diorite" - ] + "items": "minecraft:polished_diorite" } ] }, @@ -20294,9 +19912,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_diorite" - ] + "items": "minecraft:polished_diorite" } ] }, @@ -20328,9 +19944,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -20362,9 +19976,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_diorite" - ] + "items": "minecraft:polished_diorite" } ] }, @@ -20396,9 +20008,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:granite" - ] + "items": "minecraft:granite" } ] }, @@ -20430,9 +20040,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:granite" - ] + "items": "minecraft:granite" } ] }, @@ -20464,9 +20072,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_granite" - ] + "items": "minecraft:polished_granite" } ] }, @@ -20498,9 +20104,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:granite" - ] + "items": "minecraft:granite" } ] }, @@ -20532,9 +20136,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_granite" - ] + "items": "minecraft:polished_granite" } ] }, @@ -20566,9 +20168,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_granite" - ] + "items": "minecraft:polished_granite" } ] }, @@ -20600,9 +20200,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:granite" - ] + "items": "minecraft:granite" } ] }, @@ -20634,9 +20232,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_granite" - ] + "items": "minecraft:polished_granite" } ] }, @@ -20668,9 +20264,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine_shard" - ] + "items": "minecraft:prismarine_shard" } ] }, @@ -20702,9 +20296,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine_shard" - ] + "items": "minecraft:prismarine_shard" } ] }, @@ -20736,9 +20328,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine_bricks" - ] + "items": "minecraft:prismarine_bricks" } ] }, @@ -20770,9 +20360,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine_bricks" - ] + "items": "minecraft:prismarine_bricks" } ] }, @@ -20804,9 +20392,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine_bricks" - ] + "items": "minecraft:prismarine_bricks" } ] }, @@ -20838,9 +20424,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine_bricks" - ] + "items": "minecraft:prismarine_bricks" } ] }, @@ -20872,9 +20456,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine" - ] + "items": "minecraft:prismarine" } ] }, @@ -20906,9 +20488,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine" - ] + "items": "minecraft:prismarine" } ] }, @@ -20940,9 +20520,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine" - ] + "items": "minecraft:prismarine" } ] }, @@ -20974,9 +20552,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine" - ] + "items": "minecraft:prismarine" } ] }, @@ -21008,9 +20584,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -21020,9 +20594,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -21055,9 +20627,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -21089,9 +20659,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -21123,9 +20691,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:popped_chorus_fruit" - ] + "items": "minecraft:popped_chorus_fruit" } ] }, @@ -21157,9 +20723,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purpur_block" - ] + "items": "minecraft:purpur_block" } ] }, @@ -21191,9 +20755,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purpur_block" - ] + "items": "minecraft:purpur_block" } ] }, @@ -21225,9 +20787,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purpur_block" - ] + "items": "minecraft:purpur_block" } ] }, @@ -21259,9 +20819,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purpur_block" - ] + "items": "minecraft:purpur_block" } ] }, @@ -21293,9 +20851,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purpur_block" - ] + "items": "minecraft:purpur_block" } ] }, @@ -21327,9 +20883,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purpur_block" - ] + "items": "minecraft:purpur_block" } ] }, @@ -21361,9 +20915,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz" - ] + "items": "minecraft:quartz" } ] }, @@ -21395,9 +20947,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -21429,9 +20979,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -21463,9 +21011,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chiseled_quartz_block" - ] + "items": "minecraft:chiseled_quartz_block" } ] }, @@ -21475,9 +21021,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -21487,9 +21031,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_pillar" - ] + "items": "minecraft:quartz_pillar" } ] }, @@ -21523,9 +21065,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -21557,9 +21097,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chiseled_quartz_block" - ] + "items": "minecraft:chiseled_quartz_block" } ] }, @@ -21569,9 +21107,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -21581,9 +21117,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_pillar" - ] + "items": "minecraft:quartz_pillar" } ] }, @@ -21617,9 +21151,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -21651,9 +21183,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chiseled_quartz_block" - ] + "items": "minecraft:chiseled_quartz_block" } ] }, @@ -21663,9 +21193,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -21675,9 +21203,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_pillar" - ] + "items": "minecraft:quartz_pillar" } ] }, @@ -21711,9 +21237,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -21745,9 +21269,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_copper" - ] + "items": "minecraft:raw_copper" } ] }, @@ -21779,9 +21301,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_gold" - ] + "items": "minecraft:raw_gold" } ] }, @@ -21813,9 +21333,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_iron" - ] + "items": "minecraft:raw_iron" } ] }, @@ -21847,9 +21365,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -21859,9 +21375,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -21894,9 +21408,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_wart" - ] + "items": "minecraft:nether_wart" } ] }, @@ -21928,9 +21440,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_nether_bricks" - ] + "items": "minecraft:red_nether_bricks" } ] }, @@ -21962,9 +21472,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_nether_bricks" - ] + "items": "minecraft:red_nether_bricks" } ] }, @@ -21996,9 +21504,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_nether_bricks" - ] + "items": "minecraft:red_nether_bricks" } ] }, @@ -22030,9 +21536,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_nether_bricks" - ] + "items": "minecraft:red_nether_bricks" } ] }, @@ -22064,9 +21568,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sand" - ] + "items": "minecraft:red_sand" } ] }, @@ -22098,9 +21600,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chiseled_red_sandstone" - ] + "items": "minecraft:chiseled_red_sandstone" } ] }, @@ -22110,9 +21610,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -22145,9 +21643,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -22179,9 +21675,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chiseled_red_sandstone" - ] + "items": "minecraft:chiseled_red_sandstone" } ] }, @@ -22191,9 +21685,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_red_sandstone" - ] + "items": "minecraft:cut_red_sandstone" } ] }, @@ -22203,9 +21695,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -22239,9 +21729,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -22273,9 +21761,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -22307,9 +21793,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -22341,9 +21825,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -22375,9 +21857,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chiseled_sandstone" - ] + "items": "minecraft:chiseled_sandstone" } ] }, @@ -22387,9 +21867,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -22422,9 +21900,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -22456,9 +21932,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chiseled_sandstone" - ] + "items": "minecraft:chiseled_sandstone" } ] }, @@ -22468,9 +21942,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_sandstone" - ] + "items": "minecraft:cut_sandstone" } ] }, @@ -22480,9 +21952,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -22516,9 +21986,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -22550,9 +22018,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine_crystals" - ] + "items": "minecraft:prismarine_crystals" } ] }, @@ -22584,9 +22050,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:basalt" - ] + "items": "minecraft:basalt" } ] }, @@ -22618,9 +22082,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz_block" - ] + "items": "minecraft:quartz_block" } ] }, @@ -22652,9 +22114,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_quartz" - ] + "items": "minecraft:smooth_quartz" } ] }, @@ -22686,9 +22146,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_quartz" - ] + "items": "minecraft:smooth_quartz" } ] }, @@ -22720,9 +22178,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_quartz" - ] + "items": "minecraft:smooth_quartz" } ] }, @@ -22754,9 +22210,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_quartz" - ] + "items": "minecraft:smooth_quartz" } ] }, @@ -22788,9 +22242,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -22822,9 +22274,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_red_sandstone" - ] + "items": "minecraft:smooth_red_sandstone" } ] }, @@ -22856,9 +22306,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_red_sandstone" - ] + "items": "minecraft:smooth_red_sandstone" } ] }, @@ -22890,9 +22338,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_red_sandstone" - ] + "items": "minecraft:smooth_red_sandstone" } ] }, @@ -22924,9 +22370,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_red_sandstone" - ] + "items": "minecraft:smooth_red_sandstone" } ] }, @@ -22958,9 +22402,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -22992,9 +22434,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_sandstone" - ] + "items": "minecraft:smooth_sandstone" } ] }, @@ -23026,9 +22466,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_sandstone" - ] + "items": "minecraft:smooth_sandstone" } ] }, @@ -23060,9 +22498,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_sandstone" - ] + "items": "minecraft:smooth_sandstone" } ] }, @@ -23094,9 +22530,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_sandstone" - ] + "items": "minecraft:smooth_sandstone" } ] }, @@ -23128,9 +22562,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -23162,9 +22594,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_stone" - ] + "items": "minecraft:smooth_stone" } ] }, @@ -23196,9 +22626,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_stone" - ] + "items": "minecraft:smooth_stone" } ] }, @@ -23230,9 +22658,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:snowball" - ] + "items": "minecraft:snowball" } ] }, @@ -23270,9 +22696,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:wet_sponge" - ] + "items": "minecraft:wet_sponge" } ] }, @@ -23298,7 +22722,7 @@ "conditions": { "items": [ { - "tag": "minecraft:spruce_logs" + "items": "#minecraft:spruce_logs" } ] }, @@ -23330,9 +22754,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spruce_planks" - ] + "items": "minecraft:spruce_planks" } ] }, @@ -23364,9 +22786,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spruce_planks" - ] + "items": "minecraft:spruce_planks" } ] }, @@ -23398,9 +22818,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spruce_log" - ] + "items": "minecraft:spruce_log" } ] }, @@ -23432,9 +22850,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobblestone" - ] + "items": "minecraft:cobblestone" } ] }, @@ -23466,9 +22882,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -23500,9 +22914,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -23534,7 +22946,7 @@ "conditions": { "items": [ { - "tag": "minecraft:stone_bricks" + "items": "#minecraft:stone_bricks" } ] }, @@ -23566,9 +22978,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone_bricks" - ] + "items": "minecraft:stone_bricks" } ] }, @@ -23600,9 +23010,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -23634,7 +23042,7 @@ "conditions": { "items": [ { - "tag": "minecraft:stone_bricks" + "items": "#minecraft:stone_bricks" } ] }, @@ -23666,9 +23074,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone_bricks" - ] + "items": "minecraft:stone_bricks" } ] }, @@ -23700,9 +23106,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -23734,9 +23138,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -23768,9 +23170,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -23802,9 +23202,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -23836,9 +23234,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -23870,9 +23266,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_acacia_log" - ] + "items": "minecraft:stripped_acacia_log" } ] }, @@ -23904,9 +23298,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_birch_log" - ] + "items": "minecraft:stripped_birch_log" } ] }, @@ -23938,9 +23330,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_cherry_log" - ] + "items": "minecraft:stripped_cherry_log" } ] }, @@ -23972,9 +23362,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_crimson_stem" - ] + "items": "minecraft:stripped_crimson_stem" } ] }, @@ -24006,9 +23394,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_dark_oak_log" - ] + "items": "minecraft:stripped_dark_oak_log" } ] }, @@ -24040,9 +23426,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_jungle_log" - ] + "items": "minecraft:stripped_jungle_log" } ] }, @@ -24074,9 +23458,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_mangrove_log" - ] + "items": "minecraft:stripped_mangrove_log" } ] }, @@ -24108,9 +23490,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_oak_log" - ] + "items": "minecraft:stripped_oak_log" } ] }, @@ -24142,9 +23522,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_spruce_log" - ] + "items": "minecraft:stripped_spruce_log" } ] }, @@ -24176,9 +23554,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_warped_stem" - ] + "items": "minecraft:stripped_warped_stem" } ] }, @@ -24210,9 +23586,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:clay" - ] + "items": "minecraft:clay" } ] }, @@ -24244,9 +23618,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:amethyst_shard" - ] + "items": "minecraft:amethyst_shard" } ] }, @@ -24278,9 +23650,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_stem" - ] + "items": "minecraft:warped_stem" } ] }, @@ -24312,7 +23682,7 @@ "conditions": { "items": [ { - "tag": "minecraft:warped_stems" + "items": "#minecraft:warped_stems" } ] }, @@ -24344,9 +23714,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_planks" - ] + "items": "minecraft:warped_planks" } ] }, @@ -24378,9 +23746,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_planks" - ] + "items": "minecraft:warped_planks" } ] }, @@ -24412,9 +23778,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_block" - ] + "items": "minecraft:copper_block" } ] }, @@ -24452,9 +23816,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_copper_block" - ] + "items": "minecraft:waxed_copper_block" } ] }, @@ -24480,9 +23842,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_copper" - ] + "items": "minecraft:cut_copper" } ] }, @@ -24520,9 +23880,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_copper_block" - ] + "items": "minecraft:waxed_copper_block" } ] }, @@ -24554,9 +23912,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_cut_copper" - ] + "items": "minecraft:waxed_cut_copper" } ] }, @@ -24582,9 +23938,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_copper_slab" - ] + "items": "minecraft:cut_copper_slab" } ] }, @@ -24622,9 +23976,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_copper_block" - ] + "items": "minecraft:waxed_copper_block" } ] }, @@ -24656,9 +24008,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_cut_copper" - ] + "items": "minecraft:waxed_cut_copper" } ] }, @@ -24690,9 +24040,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_cut_copper" - ] + "items": "minecraft:waxed_cut_copper" } ] }, @@ -24718,9 +24066,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cut_copper_stairs" - ] + "items": "minecraft:cut_copper_stairs" } ] }, @@ -24758,9 +24104,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_copper_block" - ] + "items": "minecraft:waxed_copper_block" } ] }, @@ -24792,9 +24136,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_cut_copper" - ] + "items": "minecraft:waxed_cut_copper" } ] }, @@ -24820,9 +24162,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_copper" - ] + "items": "minecraft:exposed_copper" } ] }, @@ -24860,9 +24200,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_exposed_copper" - ] + "items": "minecraft:waxed_exposed_copper" } ] }, @@ -24888,9 +24226,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_cut_copper" - ] + "items": "minecraft:exposed_cut_copper" } ] }, @@ -24928,9 +24264,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_exposed_copper" - ] + "items": "minecraft:waxed_exposed_copper" } ] }, @@ -24962,9 +24296,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_exposed_cut_copper" - ] + "items": "minecraft:waxed_exposed_cut_copper" } ] }, @@ -24990,9 +24322,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_cut_copper_slab" - ] + "items": "minecraft:exposed_cut_copper_slab" } ] }, @@ -25030,9 +24360,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_exposed_copper" - ] + "items": "minecraft:waxed_exposed_copper" } ] }, @@ -25064,9 +24392,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_exposed_cut_copper" - ] + "items": "minecraft:waxed_exposed_cut_copper" } ] }, @@ -25098,9 +24424,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_exposed_cut_copper" - ] + "items": "minecraft:waxed_exposed_cut_copper" } ] }, @@ -25126,9 +24450,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:exposed_cut_copper_stairs" - ] + "items": "minecraft:exposed_cut_copper_stairs" } ] }, @@ -25166,9 +24488,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_exposed_copper" - ] + "items": "minecraft:waxed_exposed_copper" } ] }, @@ -25200,9 +24520,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_exposed_cut_copper" - ] + "items": "minecraft:waxed_exposed_cut_copper" } ] }, @@ -25228,9 +24546,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_copper" - ] + "items": "minecraft:oxidized_copper" } ] }, @@ -25268,9 +24584,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_oxidized_copper" - ] + "items": "minecraft:waxed_oxidized_copper" } ] }, @@ -25296,9 +24610,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_cut_copper" - ] + "items": "minecraft:oxidized_cut_copper" } ] }, @@ -25336,9 +24648,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_oxidized_copper" - ] + "items": "minecraft:waxed_oxidized_copper" } ] }, @@ -25370,9 +24680,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_oxidized_cut_copper" - ] + "items": "minecraft:waxed_oxidized_cut_copper" } ] }, @@ -25398,9 +24706,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_cut_copper_slab" - ] + "items": "minecraft:oxidized_cut_copper_slab" } ] }, @@ -25438,9 +24744,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_oxidized_copper" - ] + "items": "minecraft:waxed_oxidized_copper" } ] }, @@ -25472,9 +24776,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_oxidized_cut_copper" - ] + "items": "minecraft:waxed_oxidized_cut_copper" } ] }, @@ -25506,9 +24808,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_oxidized_cut_copper" - ] + "items": "minecraft:waxed_oxidized_cut_copper" } ] }, @@ -25534,9 +24834,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxidized_cut_copper_stairs" - ] + "items": "minecraft:oxidized_cut_copper_stairs" } ] }, @@ -25574,9 +24872,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_oxidized_copper" - ] + "items": "minecraft:waxed_oxidized_copper" } ] }, @@ -25608,9 +24904,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_oxidized_cut_copper" - ] + "items": "minecraft:waxed_oxidized_cut_copper" } ] }, @@ -25642,9 +24936,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_copper" - ] + "items": "minecraft:weathered_copper" } ] }, @@ -25676,9 +24968,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_weathered_copper" - ] + "items": "minecraft:waxed_weathered_copper" } ] }, @@ -25710,9 +25000,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_cut_copper" - ] + "items": "minecraft:weathered_cut_copper" } ] }, @@ -25744,9 +25032,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_weathered_copper" - ] + "items": "minecraft:waxed_weathered_copper" } ] }, @@ -25778,9 +25064,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_weathered_cut_copper" - ] + "items": "minecraft:waxed_weathered_cut_copper" } ] }, @@ -25812,9 +25096,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_cut_copper_slab" - ] + "items": "minecraft:weathered_cut_copper_slab" } ] }, @@ -25846,9 +25128,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_weathered_copper" - ] + "items": "minecraft:waxed_weathered_copper" } ] }, @@ -25880,9 +25160,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_weathered_cut_copper" - ] + "items": "minecraft:waxed_weathered_cut_copper" } ] }, @@ -25914,9 +25192,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_weathered_cut_copper" - ] + "items": "minecraft:waxed_weathered_cut_copper" } ] }, @@ -25948,9 +25224,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_cut_copper_stairs" - ] + "items": "minecraft:weathered_cut_copper_stairs" } ] }, @@ -25982,9 +25256,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_weathered_copper" - ] + "items": "minecraft:waxed_weathered_copper" } ] }, @@ -26016,9 +25288,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_weathered_cut_copper" - ] + "items": "minecraft:waxed_weathered_cut_copper" } ] }, @@ -26050,9 +25320,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_copper" - ] + "items": "minecraft:weathered_copper" } ] }, @@ -26084,9 +25352,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_copper" - ] + "items": "minecraft:weathered_copper" } ] }, @@ -26118,9 +25384,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_cut_copper" - ] + "items": "minecraft:weathered_cut_copper" } ] }, @@ -26152,9 +25416,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_copper" - ] + "items": "minecraft:weathered_copper" } ] }, @@ -26186,9 +25448,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_cut_copper" - ] + "items": "minecraft:weathered_cut_copper" } ] }, @@ -26220,9 +25480,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_cut_copper" - ] + "items": "minecraft:weathered_cut_copper" } ] }, @@ -26254,9 +25512,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_copper" - ] + "items": "minecraft:weathered_copper" } ] }, @@ -26288,9 +25544,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:weathered_cut_copper" - ] + "items": "minecraft:weathered_cut_copper" } ] }, @@ -26316,9 +25570,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -26328,9 +25580,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -26363,9 +25613,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -26397,9 +25645,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -26431,9 +25677,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:string" - ] + "items": "minecraft:string" } ] }, @@ -26465,9 +25709,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gravel" - ] + "items": "minecraft:gravel" } ] }, @@ -26477,9 +25719,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sand" - ] + "items": "minecraft:sand" } ] }, @@ -26512,9 +25752,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -26546,9 +25784,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:terracotta" - ] + "items": "minecraft:terracotta" } ] }, @@ -26580,9 +25816,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:feather" - ] + "items": "minecraft:feather" } ] }, @@ -26592,9 +25826,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:flint" - ] + "items": "minecraft:flint" } ] }, @@ -26627,9 +25859,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:string" - ] + "items": "minecraft:string" } ] }, @@ -26661,9 +25891,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -26673,9 +25901,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:string" - ] + "items": "minecraft:string" } ] }, @@ -26691,9 +25917,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:tripwire_hook" - ] + "items": "minecraft:tripwire_hook" } ] }, @@ -26721,9 +25945,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -26755,9 +25977,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -26789,9 +26009,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -26823,9 +26041,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -26857,9 +26073,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -26891,9 +26105,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -26925,9 +26137,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -26959,9 +26169,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -26993,9 +26201,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -27027,9 +26233,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -27061,9 +26265,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -27095,9 +26297,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -27129,9 +26329,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -27163,9 +26361,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -27197,9 +26393,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -27231,9 +26425,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:leather" - ] + "items": "minecraft:leather" } ] }, @@ -27265,9 +26457,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:leather" - ] + "items": "minecraft:leather" } ] }, @@ -27299,9 +26489,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:leather" - ] + "items": "minecraft:leather" } ] }, @@ -27333,9 +26521,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:leather" - ] + "items": "minecraft:leather" } ] }, @@ -27367,9 +26553,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -27401,9 +26585,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -27435,9 +26617,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -27469,9 +26649,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -27503,9 +26681,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -27537,9 +26713,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -27571,9 +26745,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glowstone_dust" - ] + "items": "minecraft:glowstone_dust" } ] }, @@ -27605,7 +26777,7 @@ "conditions": { "items": [ { - "tag": "minecraft:stone_tool_materials" + "items": "#minecraft:stone_tool_materials" } ] }, @@ -27633,13 +26805,43 @@ "minecraft:recipes/combat/turtle_helmet": { "parent": "minecraft:recipes/root", "criteria": { - "has_scute": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:turtle_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_turtle_scute": { "conditions": { "items": [ { - "items": [ - "minecraft:scute" - ] + "items": "minecraft:turtle_scute" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_turtle_scute" + ] + ], + "rewards": { + "recipes": [ + "minecraft:turtle_helmet" + ] + } + }, + "minecraft:recipes/combat/wolf_armor": { + "parent": "minecraft:recipes/root", + "criteria": { + "has_armadillo_scute": { + "conditions": { + "items": [ + { + "items": "minecraft:armadillo_scute" } ] }, @@ -27647,7 +26849,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:turtle_helmet" + "recipe": "minecraft:wolf_armor" }, "trigger": "minecraft:recipe_unlocked" } @@ -27655,12 +26857,12 @@ "requirements": [ [ "has_the_recipe", - "has_scute" + "has_armadillo_scute" ] ], "rewards": { "recipes": [ - "minecraft:turtle_helmet" + "minecraft:wolf_armor" ] } }, @@ -27671,9 +26873,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stick" - ] + "items": "minecraft:stick" } ] }, @@ -27705,9 +26905,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:acacia_planks" - ] + "items": "minecraft:acacia_planks" } ] }, @@ -27739,9 +26937,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_acacia_log" - ] + "items": "minecraft:stripped_acacia_log" } ] }, @@ -27773,9 +26969,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:acacia_planks" - ] + "items": "minecraft:acacia_planks" } ] }, @@ -27807,9 +27001,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:andesite" - ] + "items": "minecraft:andesite" } ] }, @@ -27841,9 +27033,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:andesite" - ] + "items": "minecraft:andesite" } ] }, @@ -27875,9 +27065,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_block" - ] + "items": "minecraft:iron_block" } ] }, @@ -27909,9 +27097,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_stone_slab" - ] + "items": "minecraft:smooth_stone_slab" } ] }, @@ -27943,9 +27129,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_planks" - ] + "items": "minecraft:bamboo_planks" } ] }, @@ -27977,9 +27161,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_bamboo_block" - ] + "items": "minecraft:stripped_bamboo_block" } ] }, @@ -28011,9 +27193,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_slab" - ] + "items": "minecraft:bamboo_slab" } ] }, @@ -28045,9 +27225,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_planks" - ] + "items": "minecraft:bamboo_planks" } ] }, @@ -28079,7 +27257,7 @@ "conditions": { "items": [ { - "tag": "minecraft:planks" + "items": "#minecraft:planks" } ] }, @@ -28095,7 +27273,7 @@ "conditions": { "items": [ { - "tag": "minecraft:wooden_slabs" + "items": "#minecraft:wooden_slabs" } ] }, @@ -28122,9 +27300,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:honeycomb" - ] + "items": "minecraft:honeycomb" } ] }, @@ -28156,9 +27332,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:birch_planks" - ] + "items": "minecraft:birch_planks" } ] }, @@ -28190,9 +27364,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_birch_log" - ] + "items": "minecraft:stripped_birch_log" } ] }, @@ -28224,9 +27396,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:birch_planks" - ] + "items": "minecraft:birch_planks" } ] }, @@ -28258,9 +27428,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -28292,9 +27460,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -28326,9 +27492,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_wool" - ] + "items": "minecraft:black_wool" } ] }, @@ -28360,9 +27524,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_wool" - ] + "items": "minecraft:black_wool" } ] }, @@ -28394,9 +27556,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_dye" - ] + "items": "minecraft:black_dye" } ] }, @@ -28428,9 +27588,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_wool" - ] + "items": "minecraft:black_wool" } ] }, @@ -28462,9 +27620,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_terracotta" - ] + "items": "minecraft:black_terracotta" } ] }, @@ -28496,9 +27652,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_stained_glass" - ] + "items": "minecraft:black_stained_glass" } ] }, @@ -28530,9 +27684,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_dye" - ] + "items": "minecraft:black_dye" } ] }, @@ -28542,9 +27694,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -28577,9 +27727,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:smooth_stone" - ] + "items": "minecraft:smooth_stone" } ] }, @@ -28611,9 +27759,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_wool" - ] + "items": "minecraft:blue_wool" } ] }, @@ -28645,9 +27791,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_wool" - ] + "items": "minecraft:blue_wool" } ] }, @@ -28679,9 +27823,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_dye" - ] + "items": "minecraft:blue_dye" } ] }, @@ -28713,9 +27855,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_wool" - ] + "items": "minecraft:blue_wool" } ] }, @@ -28747,9 +27887,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_terracotta" - ] + "items": "minecraft:blue_terracotta" } ] }, @@ -28781,9 +27919,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_stained_glass" - ] + "items": "minecraft:blue_stained_glass" } ] }, @@ -28815,9 +27951,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_dye" - ] + "items": "minecraft:blue_dye" } ] }, @@ -28827,9 +27961,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -28862,9 +27994,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bricks" - ] + "items": "minecraft:bricks" } ] }, @@ -28896,9 +28026,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bricks" - ] + "items": "minecraft:bricks" } ] }, @@ -28930,9 +28058,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_wool" - ] + "items": "minecraft:brown_wool" } ] }, @@ -28964,9 +28090,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_wool" - ] + "items": "minecraft:brown_wool" } ] }, @@ -28998,9 +28122,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_dye" - ] + "items": "minecraft:brown_dye" } ] }, @@ -29032,9 +28154,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_wool" - ] + "items": "minecraft:brown_wool" } ] }, @@ -29066,9 +28186,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_terracotta" - ] + "items": "minecraft:brown_terracotta" } ] }, @@ -29100,9 +28218,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_stained_glass" - ] + "items": "minecraft:brown_stained_glass" } ] }, @@ -29134,9 +28250,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_dye" - ] + "items": "minecraft:brown_dye" } ] }, @@ -29146,9 +28260,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -29181,7 +28293,7 @@ "conditions": { "items": [ { - "tag": "minecraft:coals" + "items": "#minecraft:coals" } ] }, @@ -29191,9 +28303,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stick" - ] + "items": "minecraft:stick" } ] }, @@ -29226,9 +28336,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:honeycomb" - ] + "items": "minecraft:honeycomb" } ] }, @@ -29238,9 +28346,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:string" - ] + "items": "minecraft:string" } ] }, @@ -29273,9 +28379,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:paper" - ] + "items": "minecraft:paper" } ] }, @@ -29307,9 +28411,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -29319,9 +28421,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_nugget" - ] + "items": "minecraft:iron_nugget" } ] }, @@ -29354,9 +28454,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cherry_planks" - ] + "items": "minecraft:cherry_planks" } ] }, @@ -29388,9 +28486,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_cherry_log" - ] + "items": "minecraft:stripped_cherry_log" } ] }, @@ -29422,9 +28518,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cherry_planks" - ] + "items": "minecraft:cherry_planks" } ] }, @@ -29488,9 +28582,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -29522,9 +28614,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -29556,9 +28646,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobblestone" - ] + "items": "minecraft:cobblestone" } ] }, @@ -29590,9 +28678,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobblestone" - ] + "items": "minecraft:cobblestone" } ] }, @@ -29630,7 +28716,7 @@ "conditions": { "items": [ { - "tag": "minecraft:wooden_slabs" + "items": "#minecraft:wooden_slabs" } ] }, @@ -29681,9 +28767,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crimson_planks" - ] + "items": "minecraft:crimson_planks" } ] }, @@ -29715,9 +28799,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_crimson_stem" - ] + "items": "minecraft:stripped_crimson_stem" } ] }, @@ -29749,9 +28831,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crimson_planks" - ] + "items": "minecraft:crimson_planks" } ] }, @@ -29783,9 +28863,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cyan_wool" - ] + "items": "minecraft:cyan_wool" } ] }, @@ -29817,9 +28895,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cyan_wool" - ] + "items": "minecraft:cyan_wool" } ] }, @@ -29851,9 +28927,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cyan_dye" - ] + "items": "minecraft:cyan_dye" } ] }, @@ -29885,9 +28959,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cyan_wool" - ] + "items": "minecraft:cyan_wool" } ] }, @@ -29919,9 +28991,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cyan_terracotta" - ] + "items": "minecraft:cyan_terracotta" } ] }, @@ -29953,9 +29023,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cyan_stained_glass" - ] + "items": "minecraft:cyan_stained_glass" } ] }, @@ -29987,9 +29055,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cyan_dye" - ] + "items": "minecraft:cyan_dye" } ] }, @@ -29999,9 +29065,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -30034,9 +29098,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_oak_planks" - ] + "items": "minecraft:dark_oak_planks" } ] }, @@ -30068,9 +29130,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_dark_oak_log" - ] + "items": "minecraft:stripped_dark_oak_log" } ] }, @@ -30102,9 +29162,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_oak_planks" - ] + "items": "minecraft:dark_oak_planks" } ] }, @@ -30136,7 +29194,7 @@ "conditions": { "items": [ { - "tag": "minecraft:decorated_pot_ingredients" + "items": "#minecraft:decorated_pot_ingredients" } ] }, @@ -30168,9 +29226,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -30202,9 +29258,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -30236,9 +29290,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -30270,9 +29322,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -30304,9 +29354,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_tiles" - ] + "items": "minecraft:deepslate_tiles" } ] }, @@ -30338,9 +29386,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -30372,9 +29418,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_bricks" - ] + "items": "minecraft:deepslate_bricks" } ] }, @@ -30406,9 +29450,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_tiles" - ] + "items": "minecraft:deepslate_tiles" } ] }, @@ -30440,9 +29482,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -30474,9 +29514,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -30508,9 +29546,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diorite" - ] + "items": "minecraft:diorite" } ] }, @@ -30542,9 +29578,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:obsidian" - ] + "items": "minecraft:obsidian" } ] }, @@ -30576,9 +29610,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:ender_eye" - ] + "items": "minecraft:ender_eye" } ] }, @@ -30610,9 +29642,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:ender_eye" - ] + "items": "minecraft:ender_eye" } ] }, @@ -30644,9 +29674,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:popped_chorus_fruit" - ] + "items": "minecraft:popped_chorus_fruit" } ] }, @@ -30678,9 +29706,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone_bricks" - ] + "items": "minecraft:end_stone_bricks" } ] }, @@ -30712,9 +29738,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone_bricks" - ] + "items": "minecraft:end_stone_bricks" } ] }, @@ -30746,9 +29770,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:end_stone" - ] + "items": "minecraft:end_stone" } ] }, @@ -30780,9 +29802,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:flint" - ] + "items": "minecraft:flint" } ] }, @@ -30814,9 +29834,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brick" - ] + "items": "minecraft:brick" } ] }, @@ -30848,7 +29866,7 @@ "conditions": { "items": [ { - "tag": "minecraft:stone_crafting_materials" + "items": "#minecraft:stone_crafting_materials" } ] }, @@ -30880,9 +29898,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass" - ] + "items": "minecraft:glass" } ] }, @@ -30914,9 +29930,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glow_ink_sac" - ] + "items": "minecraft:glow_ink_sac" } ] }, @@ -30926,9 +29940,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:item_frame" - ] + "items": "minecraft:item_frame" } ] }, @@ -30961,9 +29973,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:granite" - ] + "items": "minecraft:granite" } ] }, @@ -30995,9 +30005,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:granite" - ] + "items": "minecraft:granite" } ] }, @@ -31029,9 +30037,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_wool" - ] + "items": "minecraft:gray_wool" } ] }, @@ -31063,9 +30069,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_wool" - ] + "items": "minecraft:gray_wool" } ] }, @@ -31097,9 +30101,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_dye" - ] + "items": "minecraft:gray_dye" } ] }, @@ -31131,9 +30133,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_wool" - ] + "items": "minecraft:gray_wool" } ] }, @@ -31165,9 +30165,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_terracotta" - ] + "items": "minecraft:gray_terracotta" } ] }, @@ -31199,9 +30197,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_stained_glass" - ] + "items": "minecraft:gray_stained_glass" } ] }, @@ -31233,9 +30229,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -31245,9 +30239,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_dye" - ] + "items": "minecraft:gray_dye" } ] }, @@ -31280,9 +30272,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_wool" - ] + "items": "minecraft:green_wool" } ] }, @@ -31314,9 +30304,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_wool" - ] + "items": "minecraft:green_wool" } ] }, @@ -31348,9 +30336,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_dye" - ] + "items": "minecraft:green_dye" } ] }, @@ -31382,9 +30368,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_wool" - ] + "items": "minecraft:green_wool" } ] }, @@ -31416,9 +30400,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_terracotta" - ] + "items": "minecraft:green_terracotta" } ] }, @@ -31450,9 +30432,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_stained_glass" - ] + "items": "minecraft:green_stained_glass" } ] }, @@ -31484,9 +30464,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -31496,9 +30474,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_dye" - ] + "items": "minecraft:green_dye" } ] }, @@ -31531,9 +30507,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone_slab" - ] + "items": "minecraft:stone_slab" } ] }, @@ -31565,9 +30539,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:honeycomb" - ] + "items": "minecraft:honeycomb" } ] }, @@ -31599,9 +30571,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -31633,9 +30603,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:leather" - ] + "items": "minecraft:leather" } ] }, @@ -31667,9 +30635,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -31701,9 +30667,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:jungle_planks" - ] + "items": "minecraft:jungle_planks" } ] }, @@ -31735,9 +30699,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_jungle_log" - ] + "items": "minecraft:stripped_jungle_log" } ] }, @@ -31769,9 +30731,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:jungle_planks" - ] + "items": "minecraft:jungle_planks" } ] }, @@ -31803,9 +30763,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stick" - ] + "items": "minecraft:stick" } ] }, @@ -31837,9 +30795,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -31849,9 +30805,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_nugget" - ] + "items": "minecraft:iron_nugget" } ] }, @@ -31884,9 +30838,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_blue_wool" - ] + "items": "minecraft:light_blue_wool" } ] }, @@ -31918,9 +30870,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_blue_wool" - ] + "items": "minecraft:light_blue_wool" } ] }, @@ -31952,9 +30902,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_blue_dye" - ] + "items": "minecraft:light_blue_dye" } ] }, @@ -31986,9 +30934,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_blue_wool" - ] + "items": "minecraft:light_blue_wool" } ] }, @@ -32020,9 +30966,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_blue_terracotta" - ] + "items": "minecraft:light_blue_terracotta" } ] }, @@ -32054,9 +30998,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_blue_stained_glass" - ] + "items": "minecraft:light_blue_stained_glass" } ] }, @@ -32088,9 +31030,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -32100,9 +31040,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_blue_dye" - ] + "items": "minecraft:light_blue_dye" } ] }, @@ -32135,9 +31073,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_gray_wool" - ] + "items": "minecraft:light_gray_wool" } ] }, @@ -32169,9 +31105,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_gray_wool" - ] + "items": "minecraft:light_gray_wool" } ] }, @@ -32203,9 +31137,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_gray_dye" - ] + "items": "minecraft:light_gray_dye" } ] }, @@ -32237,9 +31169,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_gray_wool" - ] + "items": "minecraft:light_gray_wool" } ] }, @@ -32271,9 +31201,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_gray_terracotta" - ] + "items": "minecraft:light_gray_terracotta" } ] }, @@ -32305,9 +31233,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_gray_stained_glass" - ] + "items": "minecraft:light_gray_stained_glass" } ] }, @@ -32339,9 +31265,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -32351,9 +31275,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:light_gray_dye" - ] + "items": "minecraft:light_gray_dye" } ] }, @@ -32386,9 +31308,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lime_wool" - ] + "items": "minecraft:lime_wool" } ] }, @@ -32420,9 +31340,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lime_wool" - ] + "items": "minecraft:lime_wool" } ] }, @@ -32454,9 +31372,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lime_dye" - ] + "items": "minecraft:lime_dye" } ] }, @@ -32488,9 +31404,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lime_wool" - ] + "items": "minecraft:lime_wool" } ] }, @@ -32522,9 +31436,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lime_terracotta" - ] + "items": "minecraft:lime_terracotta" } ] }, @@ -32556,9 +31468,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lime_stained_glass" - ] + "items": "minecraft:lime_stained_glass" } ] }, @@ -32590,9 +31500,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -32602,9 +31510,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lime_dye" - ] + "items": "minecraft:lime_dye" } ] }, @@ -32637,9 +31543,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -32671,9 +31575,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:string" - ] + "items": "minecraft:string" } ] }, @@ -32705,9 +31607,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magenta_wool" - ] + "items": "minecraft:magenta_wool" } ] }, @@ -32739,9 +31639,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magenta_wool" - ] + "items": "minecraft:magenta_wool" } ] }, @@ -32773,9 +31671,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magenta_dye" - ] + "items": "minecraft:magenta_dye" } ] }, @@ -32807,9 +31703,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magenta_wool" - ] + "items": "minecraft:magenta_wool" } ] }, @@ -32841,9 +31735,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magenta_terracotta" - ] + "items": "minecraft:magenta_terracotta" } ] }, @@ -32875,9 +31767,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magenta_stained_glass" - ] + "items": "minecraft:magenta_stained_glass" } ] }, @@ -32909,9 +31799,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -32921,9 +31809,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:magenta_dye" - ] + "items": "minecraft:magenta_dye" } ] }, @@ -32956,9 +31842,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_planks" - ] + "items": "minecraft:mangrove_planks" } ] }, @@ -32990,9 +31874,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_mangrove_log" - ] + "items": "minecraft:stripped_mangrove_log" } ] }, @@ -33024,9 +31906,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_planks" - ] + "items": "minecraft:mangrove_planks" } ] }, @@ -33058,9 +31938,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_cobblestone" - ] + "items": "minecraft:mossy_cobblestone" } ] }, @@ -33092,9 +31970,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_cobblestone" - ] + "items": "minecraft:mossy_cobblestone" } ] }, @@ -33126,9 +32002,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_stone_bricks" - ] + "items": "minecraft:mossy_stone_bricks" } ] }, @@ -33160,9 +32034,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mossy_stone_bricks" - ] + "items": "minecraft:mossy_stone_bricks" } ] }, @@ -33194,9 +32066,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:moss_block" - ] + "items": "minecraft:moss_block" } ] }, @@ -33228,9 +32098,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mud_bricks" - ] + "items": "minecraft:mud_bricks" } ] }, @@ -33262,9 +32130,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mud_bricks" - ] + "items": "minecraft:mud_bricks" } ] }, @@ -33296,9 +32162,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_bricks" - ] + "items": "minecraft:nether_bricks" } ] }, @@ -33330,9 +32194,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_bricks" - ] + "items": "minecraft:nether_bricks" } ] }, @@ -33364,9 +32226,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_bricks" - ] + "items": "minecraft:nether_bricks" } ] }, @@ -33398,9 +32258,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oak_planks" - ] + "items": "minecraft:oak_planks" } ] }, @@ -33432,9 +32290,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_oak_log" - ] + "items": "minecraft:stripped_oak_log" } ] }, @@ -33466,9 +32322,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oak_planks" - ] + "items": "minecraft:oak_planks" } ] }, @@ -33500,9 +32354,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_wool" - ] + "items": "minecraft:orange_wool" } ] }, @@ -33534,9 +32386,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_wool" - ] + "items": "minecraft:orange_wool" } ] }, @@ -33568,9 +32418,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_dye" - ] + "items": "minecraft:orange_dye" } ] }, @@ -33602,9 +32450,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_wool" - ] + "items": "minecraft:orange_wool" } ] }, @@ -33636,9 +32482,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_terracotta" - ] + "items": "minecraft:orange_terracotta" } ] }, @@ -33670,9 +32514,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_stained_glass" - ] + "items": "minecraft:orange_stained_glass" } ] }, @@ -33704,9 +32546,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -33716,9 +32556,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_dye" - ] + "items": "minecraft:orange_dye" } ] }, @@ -33757,7 +32595,7 @@ "conditions": { "items": [ { - "tag": "minecraft:wool" + "items": "#minecraft:wool" } ] }, @@ -33783,9 +32621,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_wool" - ] + "items": "minecraft:pink_wool" } ] }, @@ -33817,9 +32653,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_wool" - ] + "items": "minecraft:pink_wool" } ] }, @@ -33851,9 +32685,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_dye" - ] + "items": "minecraft:pink_dye" } ] }, @@ -33885,9 +32717,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_wool" - ] + "items": "minecraft:pink_wool" } ] }, @@ -33919,9 +32749,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_terracotta" - ] + "items": "minecraft:pink_terracotta" } ] }, @@ -33953,9 +32781,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_stained_glass" - ] + "items": "minecraft:pink_stained_glass" } ] }, @@ -33987,9 +32813,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -33999,9 +32823,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_dye" - ] + "items": "minecraft:pink_dye" } ] }, @@ -34034,9 +32856,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone_bricks" - ] + "items": "minecraft:polished_blackstone_bricks" } ] }, @@ -34068,9 +32888,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -34102,9 +32920,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone_bricks" - ] + "items": "minecraft:polished_blackstone_bricks" } ] }, @@ -34136,9 +32952,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -34170,9 +32984,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -34204,9 +33016,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blackstone" - ] + "items": "minecraft:blackstone" } ] }, @@ -34238,9 +33048,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -34272,9 +33080,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -34306,9 +33112,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobbled_deepslate" - ] + "items": "minecraft:cobbled_deepslate" } ] }, @@ -34340,9 +33144,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_deepslate" - ] + "items": "minecraft:polished_deepslate" } ] }, @@ -34374,9 +33176,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine" - ] + "items": "minecraft:prismarine" } ] }, @@ -34408,9 +33208,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:prismarine" - ] + "items": "minecraft:prismarine" } ] }, @@ -34442,9 +33240,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_wool" - ] + "items": "minecraft:purple_wool" } ] }, @@ -34476,9 +33272,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_wool" - ] + "items": "minecraft:purple_wool" } ] }, @@ -34510,9 +33304,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_dye" - ] + "items": "minecraft:purple_dye" } ] }, @@ -34544,9 +33336,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_wool" - ] + "items": "minecraft:purple_wool" } ] }, @@ -34578,9 +33368,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_terracotta" - ] + "items": "minecraft:purple_terracotta" } ] }, @@ -34612,9 +33400,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_stained_glass" - ] + "items": "minecraft:purple_stained_glass" } ] }, @@ -34646,9 +33432,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -34658,9 +33442,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_dye" - ] + "items": "minecraft:purple_dye" } ] }, @@ -34693,9 +33475,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_wool" - ] + "items": "minecraft:red_wool" } ] }, @@ -34727,9 +33507,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_wool" - ] + "items": "minecraft:red_wool" } ] }, @@ -34761,9 +33539,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_dye" - ] + "items": "minecraft:red_dye" } ] }, @@ -34795,9 +33571,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_wool" - ] + "items": "minecraft:red_wool" } ] }, @@ -34829,9 +33603,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_terracotta" - ] + "items": "minecraft:red_terracotta" } ] }, @@ -34863,9 +33635,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_nether_bricks" - ] + "items": "minecraft:red_nether_bricks" } ] }, @@ -34897,9 +33667,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_nether_bricks" - ] + "items": "minecraft:red_nether_bricks" } ] }, @@ -34931,9 +33699,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -34965,9 +33731,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_sandstone" - ] + "items": "minecraft:red_sandstone" } ] }, @@ -34999,9 +33763,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_stained_glass" - ] + "items": "minecraft:red_stained_glass" } ] }, @@ -35033,9 +33795,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -35045,9 +33805,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_dye" - ] + "items": "minecraft:red_dye" } ] }, @@ -35080,9 +33838,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crying_obsidian" - ] + "items": "minecraft:crying_obsidian" } ] }, @@ -35114,9 +33870,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -35148,9 +33902,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sandstone" - ] + "items": "minecraft:sandstone" } ] }, @@ -35182,9 +33934,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo" - ] + "items": "minecraft:bamboo" } ] }, @@ -35216,9 +33966,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:shulker_shell" - ] + "items": "minecraft:shulker_shell" } ] }, @@ -35250,9 +33998,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -35284,9 +34030,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:furnace" - ] + "items": "minecraft:furnace" } ] }, @@ -35318,9 +34062,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:snowball" - ] + "items": "minecraft:snowball" } ] }, @@ -35352,7 +34094,7 @@ "conditions": { "items": [ { - "tag": "minecraft:soul_fire_base_blocks" + "items": "#minecraft:soul_fire_base_blocks" } ] }, @@ -35384,9 +34126,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:soul_torch" - ] + "items": "minecraft:soul_torch" } ] }, @@ -35418,7 +34158,7 @@ "conditions": { "items": [ { - "tag": "minecraft:soul_fire_base_blocks" + "items": "#minecraft:soul_fire_base_blocks" } ] }, @@ -35450,9 +34190,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spruce_planks" - ] + "items": "minecraft:spruce_planks" } ] }, @@ -35484,9 +34222,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_spruce_log" - ] + "items": "minecraft:stripped_spruce_log" } ] }, @@ -35518,9 +34254,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spruce_planks" - ] + "items": "minecraft:spruce_planks" } ] }, @@ -35552,9 +34286,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -35586,9 +34318,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone_bricks" - ] + "items": "minecraft:stone_bricks" } ] }, @@ -35620,9 +34350,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -35654,9 +34382,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone_bricks" - ] + "items": "minecraft:stone_bricks" } ] }, @@ -35688,9 +34414,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone_pickaxe" - ] + "items": "minecraft:stone_pickaxe" } ] }, @@ -35722,9 +34446,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_planks" - ] + "items": "minecraft:warped_planks" } ] }, @@ -35756,9 +34478,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stripped_warped_stem" - ] + "items": "minecraft:stripped_warped_stem" } ] }, @@ -35790,9 +34510,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_planks" - ] + "items": "minecraft:warped_planks" } ] }, @@ -35830,9 +34548,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_wool" - ] + "items": "minecraft:white_wool" } ] }, @@ -35864,9 +34580,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_wool" - ] + "items": "minecraft:white_wool" } ] }, @@ -35898,9 +34612,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -35932,9 +34644,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_wool" - ] + "items": "minecraft:white_wool" } ] }, @@ -35966,9 +34676,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_terracotta" - ] + "items": "minecraft:white_terracotta" } ] }, @@ -35994,9 +34702,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_stained_glass" - ] + "items": "minecraft:white_stained_glass" } ] }, @@ -36028,9 +34734,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -36046,9 +34750,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -36081,9 +34783,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_wool" - ] + "items": "minecraft:yellow_wool" } ] }, @@ -36115,9 +34815,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_wool" - ] + "items": "minecraft:yellow_wool" } ] }, @@ -36149,9 +34847,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_dye" - ] + "items": "minecraft:yellow_dye" } ] }, @@ -36183,9 +34879,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_wool" - ] + "items": "minecraft:yellow_wool" } ] }, @@ -36217,9 +34911,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_terracotta" - ] + "items": "minecraft:yellow_terracotta" } ] }, @@ -36245,9 +34937,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_stained_glass" - ] + "items": "minecraft:yellow_stained_glass" } ] }, @@ -36279,9 +34969,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glass_pane" - ] + "items": "minecraft:glass_pane" } ] }, @@ -36297,9 +34985,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_dye" - ] + "items": "minecraft:yellow_dye" } ] }, @@ -36326,9 +35012,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:potato" - ] + "items": "minecraft:potato" } ] }, @@ -36360,9 +35044,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:potato" - ] + "items": "minecraft:potato" } ] }, @@ -36394,9 +35076,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:potato" - ] + "items": "minecraft:potato" } ] }, @@ -36428,9 +35108,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:beetroot" - ] + "items": "minecraft:beetroot" } ] }, @@ -36468,9 +35146,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:wheat" - ] + "items": "minecraft:wheat" } ] }, @@ -36496,9 +35172,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:egg" - ] + "items": "minecraft:egg" } ] }, @@ -36530,9 +35204,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:beef" - ] + "items": "minecraft:beef" } ] }, @@ -36564,9 +35236,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:beef" - ] + "items": "minecraft:beef" } ] }, @@ -36598,9 +35268,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:beef" - ] + "items": "minecraft:beef" } ] }, @@ -36632,9 +35300,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chicken" - ] + "items": "minecraft:chicken" } ] }, @@ -36666,9 +35332,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chicken" - ] + "items": "minecraft:chicken" } ] }, @@ -36700,9 +35364,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chicken" - ] + "items": "minecraft:chicken" } ] }, @@ -36734,9 +35396,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cod" - ] + "items": "minecraft:cod" } ] }, @@ -36768,9 +35428,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cod" - ] + "items": "minecraft:cod" } ] }, @@ -36802,9 +35460,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cod" - ] + "items": "minecraft:cod" } ] }, @@ -36836,9 +35492,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mutton" - ] + "items": "minecraft:mutton" } ] }, @@ -36870,9 +35524,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mutton" - ] + "items": "minecraft:mutton" } ] }, @@ -36904,9 +35556,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mutton" - ] + "items": "minecraft:mutton" } ] }, @@ -36938,9 +35588,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:porkchop" - ] + "items": "minecraft:porkchop" } ] }, @@ -36972,9 +35620,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:porkchop" - ] + "items": "minecraft:porkchop" } ] }, @@ -37006,9 +35652,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:porkchop" - ] + "items": "minecraft:porkchop" } ] }, @@ -37040,9 +35684,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:rabbit" - ] + "items": "minecraft:rabbit" } ] }, @@ -37074,9 +35716,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:rabbit" - ] + "items": "minecraft:rabbit" } ] }, @@ -37108,9 +35748,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:rabbit" - ] + "items": "minecraft:rabbit" } ] }, @@ -37142,9 +35780,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:salmon" - ] + "items": "minecraft:salmon" } ] }, @@ -37176,9 +35812,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:salmon" - ] + "items": "minecraft:salmon" } ] }, @@ -37210,9 +35844,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:salmon" - ] + "items": "minecraft:salmon" } ] }, @@ -37244,9 +35876,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cocoa_beans" - ] + "items": "minecraft:cocoa_beans" } ] }, @@ -37278,9 +35908,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dried_kelp_block" - ] + "items": "minecraft:dried_kelp_block" } ] }, @@ -37312,9 +35940,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:kelp" - ] + "items": "minecraft:kelp" } ] }, @@ -37346,9 +35972,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:kelp" - ] + "items": "minecraft:kelp" } ] }, @@ -37380,9 +36004,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:kelp" - ] + "items": "minecraft:kelp" } ] }, @@ -37414,9 +36036,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -37448,9 +36068,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:honey_block" - ] + "items": "minecraft:honey_block" } ] }, @@ -37482,9 +36100,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bowl" - ] + "items": "minecraft:bowl" } ] }, @@ -37494,9 +36110,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_mushroom" - ] + "items": "minecraft:brown_mushroom" } ] }, @@ -37506,9 +36120,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mushroom_stew" - ] + "items": "minecraft:mushroom_stew" } ] }, @@ -37518,9 +36130,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_mushroom" - ] + "items": "minecraft:red_mushroom" } ] }, @@ -37555,9 +36165,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:carved_pumpkin" - ] + "items": "minecraft:carved_pumpkin" } ] }, @@ -37567,9 +36175,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pumpkin" - ] + "items": "minecraft:pumpkin" } ] }, @@ -37602,9 +36208,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cooked_rabbit" - ] + "items": "minecraft:cooked_rabbit" } ] }, @@ -37636,9 +36240,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cooked_rabbit" - ] + "items": "minecraft:cooked_rabbit" } ] }, @@ -37670,9 +36272,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_star" - ] + "items": "minecraft:nether_star" } ] }, @@ -37704,9 +36304,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:ink_sac" - ] + "items": "minecraft:ink_sac" } ] }, @@ -37744,9 +36342,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:wither_rose" - ] + "items": "minecraft:wither_rose" } ] }, @@ -37772,9 +36368,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lapis_lazuli" - ] + "items": "minecraft:lapis_lazuli" } ] }, @@ -37806,9 +36400,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cornflower" - ] + "items": "minecraft:cornflower" } ] }, @@ -37840,9 +36432,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bone" - ] + "items": "minecraft:bone" } ] }, @@ -37874,9 +36464,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bone_block" - ] + "items": "minecraft:bone_block" } ] }, @@ -37908,9 +36496,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:paper" - ] + "items": "minecraft:paper" } ] }, @@ -37942,9 +36528,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:brown_mushroom" - ] + "items": "minecraft:brown_mushroom" } ] }, @@ -37954,9 +36538,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mushroom_stew" - ] + "items": "minecraft:mushroom_stew" } ] }, @@ -37966,9 +36548,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_mushroom" - ] + "items": "minecraft:red_mushroom" } ] }, @@ -38002,9 +36582,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:clay_ball" - ] + "items": "minecraft:clay_ball" } ] }, @@ -38036,9 +36614,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cocoa_beans" - ] + "items": "minecraft:cocoa_beans" } ] }, @@ -38070,9 +36646,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -38104,7 +36678,7 @@ "conditions": { "items": [ { - "tag": "minecraft:logs_that_burn" + "items": "#minecraft:logs_that_burn" } ] }, @@ -38136,9 +36710,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:coal_block" - ] + "items": "minecraft:coal_block" } ] }, @@ -38170,9 +36742,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:coal_ore" - ] + "items": "minecraft:coal_ore" } ] }, @@ -38204,9 +36774,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_coal_ore" - ] + "items": "minecraft:deepslate_coal_ore" } ] }, @@ -38238,9 +36806,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:coal_ore" - ] + "items": "minecraft:coal_ore" } ] }, @@ -38272,9 +36838,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_coal_ore" - ] + "items": "minecraft:deepslate_coal_ore" } ] }, @@ -38306,9 +36870,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:coast_armor_trim_smithing_template" - ] + "items": "minecraft:coast_armor_trim_smithing_template" } ] }, @@ -38340,9 +36902,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:coast_armor_trim_smithing_template" - ] + "items": "minecraft:coast_armor_trim_smithing_template" } ] }, @@ -38374,9 +36934,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:heart_of_the_sea" - ] + "items": "minecraft:heart_of_the_sea" } ] }, @@ -38386,9 +36944,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nautilus_shell" - ] + "items": "minecraft:nautilus_shell" } ] }, @@ -38421,9 +36977,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_block" - ] + "items": "minecraft:copper_block" } ] }, @@ -38455,9 +37009,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_ore" - ] + "items": "minecraft:copper_ore" } ] }, @@ -38489,9 +37041,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_copper_ore" - ] + "items": "minecraft:deepslate_copper_ore" } ] }, @@ -38523,9 +37073,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_copper" - ] + "items": "minecraft:raw_copper" } ] }, @@ -38557,9 +37105,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_ore" - ] + "items": "minecraft:copper_ore" } ] }, @@ -38591,9 +37137,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_copper_ore" - ] + "items": "minecraft:deepslate_copper_ore" } ] }, @@ -38625,9 +37169,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_copper" - ] + "items": "minecraft:raw_copper" } ] }, @@ -38665,9 +37207,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:waxed_copper_block" - ] + "items": "minecraft:waxed_copper_block" } ] }, @@ -38693,9 +37233,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:creeper_head" - ] + "items": "minecraft:creeper_head" } ] }, @@ -38727,9 +37265,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_dye" - ] + "items": "minecraft:blue_dye" } ] }, @@ -38739,9 +37275,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_dye" - ] + "items": "minecraft:green_dye" } ] }, @@ -38774,9 +37308,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pitcher_plant" - ] + "items": "minecraft:pitcher_plant" } ] }, @@ -38808,9 +37340,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond_block" - ] + "items": "minecraft:diamond_block" } ] }, @@ -38842,9 +37372,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_diamond_ore" - ] + "items": "minecraft:deepslate_diamond_ore" } ] }, @@ -38876,9 +37404,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond_ore" - ] + "items": "minecraft:diamond_ore" } ] }, @@ -38910,9 +37436,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_diamond_ore" - ] + "items": "minecraft:deepslate_diamond_ore" } ] }, @@ -38944,9 +37468,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond_ore" - ] + "items": "minecraft:diamond_ore" } ] }, @@ -38978,9 +37500,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dune_armor_trim_smithing_template" - ] + "items": "minecraft:dune_armor_trim_smithing_template" } ] }, @@ -39012,9 +37532,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dune_armor_trim_smithing_template" - ] + "items": "minecraft:dune_armor_trim_smithing_template" } ] }, @@ -39046,9 +37564,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:emerald_block" - ] + "items": "minecraft:emerald_block" } ] }, @@ -39080,9 +37596,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_emerald_ore" - ] + "items": "minecraft:deepslate_emerald_ore" } ] }, @@ -39114,9 +37628,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:emerald_ore" - ] + "items": "minecraft:emerald_ore" } ] }, @@ -39148,9 +37660,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_emerald_ore" - ] + "items": "minecraft:deepslate_emerald_ore" } ] }, @@ -39182,9 +37692,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:emerald_ore" - ] + "items": "minecraft:emerald_ore" } ] }, @@ -39216,9 +37724,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blaze_powder" - ] + "items": "minecraft:blaze_powder" } ] }, @@ -39250,9 +37756,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:eye_armor_trim_smithing_template" - ] + "items": "minecraft:eye_armor_trim_smithing_template" } ] }, @@ -39284,9 +37788,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:eye_armor_trim_smithing_template" - ] + "items": "minecraft:eye_armor_trim_smithing_template" } ] }, @@ -39318,9 +37820,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gunpowder" - ] + "items": "minecraft:gunpowder" } ] }, @@ -39352,9 +37852,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blaze_powder" - ] + "items": "minecraft:blaze_powder" } ] }, @@ -39386,9 +37884,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxeye_daisy" - ] + "items": "minecraft:oxeye_daisy" } ] }, @@ -39420,9 +37916,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_gold_ore" - ] + "items": "minecraft:deepslate_gold_ore" } ] }, @@ -39454,9 +37948,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ore" - ] + "items": "minecraft:gold_ore" } ] }, @@ -39488,9 +37980,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_gold_ore" - ] + "items": "minecraft:nether_gold_ore" } ] }, @@ -39522,9 +38012,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_gold" - ] + "items": "minecraft:raw_gold" } ] }, @@ -39556,9 +38044,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_block" - ] + "items": "minecraft:gold_block" } ] }, @@ -39590,9 +38076,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_nugget" - ] + "items": "minecraft:gold_nugget" } ] }, @@ -39624,9 +38108,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_gold_ore" - ] + "items": "minecraft:deepslate_gold_ore" } ] }, @@ -39658,9 +38140,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ore" - ] + "items": "minecraft:gold_ore" } ] }, @@ -39692,9 +38172,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_gold_ore" - ] + "items": "minecraft:nether_gold_ore" } ] }, @@ -39726,9 +38204,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_gold" - ] + "items": "minecraft:raw_gold" } ] }, @@ -39760,9 +38236,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -39794,9 +38268,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_axe" - ] + "items": "minecraft:golden_axe" } ] }, @@ -39806,9 +38278,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_boots" - ] + "items": "minecraft:golden_boots" } ] }, @@ -39818,9 +38288,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_chestplate" - ] + "items": "minecraft:golden_chestplate" } ] }, @@ -39830,9 +38298,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_helmet" - ] + "items": "minecraft:golden_helmet" } ] }, @@ -39842,9 +38308,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_hoe" - ] + "items": "minecraft:golden_hoe" } ] }, @@ -39854,9 +38318,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_horse_armor" - ] + "items": "minecraft:golden_horse_armor" } ] }, @@ -39866,9 +38328,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_leggings" - ] + "items": "minecraft:golden_leggings" } ] }, @@ -39878,9 +38338,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_pickaxe" - ] + "items": "minecraft:golden_pickaxe" } ] }, @@ -39890,9 +38348,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_shovel" - ] + "items": "minecraft:golden_shovel" } ] }, @@ -39902,9 +38358,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_sword" - ] + "items": "minecraft:golden_sword" } ] }, @@ -39945,9 +38399,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_axe" - ] + "items": "minecraft:golden_axe" } ] }, @@ -39957,9 +38409,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_boots" - ] + "items": "minecraft:golden_boots" } ] }, @@ -39969,9 +38419,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_chestplate" - ] + "items": "minecraft:golden_chestplate" } ] }, @@ -39981,9 +38429,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_helmet" - ] + "items": "minecraft:golden_helmet" } ] }, @@ -39993,9 +38439,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_hoe" - ] + "items": "minecraft:golden_hoe" } ] }, @@ -40005,9 +38449,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_horse_armor" - ] + "items": "minecraft:golden_horse_armor" } ] }, @@ -40017,9 +38459,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_leggings" - ] + "items": "minecraft:golden_leggings" } ] }, @@ -40029,9 +38469,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_pickaxe" - ] + "items": "minecraft:golden_pickaxe" } ] }, @@ -40041,9 +38479,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_shovel" - ] + "items": "minecraft:golden_shovel" } ] }, @@ -40053,9 +38489,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:golden_sword" - ] + "items": "minecraft:golden_sword" } ] }, @@ -40096,9 +38530,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_dye" - ] + "items": "minecraft:black_dye" } ] }, @@ -40114,9 +38546,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -40143,9 +38573,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cactus" - ] + "items": "minecraft:cactus" } ] }, @@ -40177,9 +38605,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:host_armor_trim_smithing_template" - ] + "items": "minecraft:host_armor_trim_smithing_template" } ] }, @@ -40211,9 +38637,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:host_armor_trim_smithing_template" - ] + "items": "minecraft:host_armor_trim_smithing_template" } ] }, @@ -40245,9 +38669,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_iron_ore" - ] + "items": "minecraft:deepslate_iron_ore" } ] }, @@ -40279,9 +38701,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ore" - ] + "items": "minecraft:iron_ore" } ] }, @@ -40313,9 +38733,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_iron" - ] + "items": "minecraft:raw_iron" } ] }, @@ -40347,9 +38765,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_block" - ] + "items": "minecraft:iron_block" } ] }, @@ -40381,9 +38797,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_nugget" - ] + "items": "minecraft:iron_nugget" } ] }, @@ -40415,9 +38829,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_iron_ore" - ] + "items": "minecraft:deepslate_iron_ore" } ] }, @@ -40449,9 +38861,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ore" - ] + "items": "minecraft:iron_ore" } ] }, @@ -40483,9 +38893,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_iron" - ] + "items": "minecraft:raw_iron" } ] }, @@ -40517,9 +38925,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -40551,9 +38957,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chainmail_boots" - ] + "items": "minecraft:chainmail_boots" } ] }, @@ -40563,9 +38967,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chainmail_chestplate" - ] + "items": "minecraft:chainmail_chestplate" } ] }, @@ -40575,9 +38977,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chainmail_helmet" - ] + "items": "minecraft:chainmail_helmet" } ] }, @@ -40587,9 +38987,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chainmail_leggings" - ] + "items": "minecraft:chainmail_leggings" } ] }, @@ -40599,9 +38997,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_axe" - ] + "items": "minecraft:iron_axe" } ] }, @@ -40611,9 +39007,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_boots" - ] + "items": "minecraft:iron_boots" } ] }, @@ -40623,9 +39017,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_chestplate" - ] + "items": "minecraft:iron_chestplate" } ] }, @@ -40635,9 +39027,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_helmet" - ] + "items": "minecraft:iron_helmet" } ] }, @@ -40647,9 +39037,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_hoe" - ] + "items": "minecraft:iron_hoe" } ] }, @@ -40659,9 +39047,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_horse_armor" - ] + "items": "minecraft:iron_horse_armor" } ] }, @@ -40671,9 +39057,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_leggings" - ] + "items": "minecraft:iron_leggings" } ] }, @@ -40683,9 +39067,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_pickaxe" - ] + "items": "minecraft:iron_pickaxe" } ] }, @@ -40695,9 +39077,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_shovel" - ] + "items": "minecraft:iron_shovel" } ] }, @@ -40707,9 +39087,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_sword" - ] + "items": "minecraft:iron_sword" } ] }, @@ -40754,9 +39132,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chainmail_boots" - ] + "items": "minecraft:chainmail_boots" } ] }, @@ -40766,9 +39142,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chainmail_chestplate" - ] + "items": "minecraft:chainmail_chestplate" } ] }, @@ -40778,9 +39152,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chainmail_helmet" - ] + "items": "minecraft:chainmail_helmet" } ] }, @@ -40790,9 +39162,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chainmail_leggings" - ] + "items": "minecraft:chainmail_leggings" } ] }, @@ -40802,9 +39172,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_axe" - ] + "items": "minecraft:iron_axe" } ] }, @@ -40814,9 +39182,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_boots" - ] + "items": "minecraft:iron_boots" } ] }, @@ -40826,9 +39192,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_chestplate" - ] + "items": "minecraft:iron_chestplate" } ] }, @@ -40838,9 +39202,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_helmet" - ] + "items": "minecraft:iron_helmet" } ] }, @@ -40850,9 +39212,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_hoe" - ] + "items": "minecraft:iron_hoe" } ] }, @@ -40862,9 +39222,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_horse_armor" - ] + "items": "minecraft:iron_horse_armor" } ] }, @@ -40874,9 +39232,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_leggings" - ] + "items": "minecraft:iron_leggings" } ] }, @@ -40886,9 +39242,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_pickaxe" - ] + "items": "minecraft:iron_pickaxe" } ] }, @@ -40898,9 +39252,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_shovel" - ] + "items": "minecraft:iron_shovel" } ] }, @@ -40910,9 +39262,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_sword" - ] + "items": "minecraft:iron_sword" } ] }, @@ -40957,9 +39307,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lapis_block" - ] + "items": "minecraft:lapis_block" } ] }, @@ -40991,9 +39339,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_lapis_ore" - ] + "items": "minecraft:deepslate_lapis_ore" } ] }, @@ -41025,9 +39371,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lapis_ore" - ] + "items": "minecraft:lapis_ore" } ] }, @@ -41059,9 +39403,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_lapis_ore" - ] + "items": "minecraft:deepslate_lapis_ore" } ] }, @@ -41093,9 +39435,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lapis_ore" - ] + "items": "minecraft:lapis_ore" } ] }, @@ -41127,9 +39467,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:rabbit_hide" - ] + "items": "minecraft:rabbit_hide" } ] }, @@ -41161,9 +39499,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:leather" - ] + "items": "minecraft:leather" } ] }, @@ -41195,9 +39531,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_orchid" - ] + "items": "minecraft:blue_orchid" } ] }, @@ -41229,9 +39563,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_dye" - ] + "items": "minecraft:blue_dye" } ] }, @@ -41247,9 +39579,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -41276,9 +39606,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:azure_bluet" - ] + "items": "minecraft:azure_bluet" } ] }, @@ -41310,9 +39638,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:black_dye" - ] + "items": "minecraft:black_dye" } ] }, @@ -41328,9 +39654,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -41357,9 +39681,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gray_dye" - ] + "items": "minecraft:gray_dye" } ] }, @@ -41375,9 +39697,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -41404,9 +39724,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oxeye_daisy" - ] + "items": "minecraft:oxeye_daisy" } ] }, @@ -41444,9 +39762,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_tulip" - ] + "items": "minecraft:white_tulip" } ] }, @@ -41472,9 +39788,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:green_dye" - ] + "items": "minecraft:green_dye" } ] }, @@ -41490,9 +39804,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -41519,9 +39831,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sea_pickle" - ] + "items": "minecraft:sea_pickle" } ] }, @@ -41553,9 +39863,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:allium" - ] + "items": "minecraft:allium" } ] }, @@ -41587,9 +39895,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_dye" - ] + "items": "minecraft:blue_dye" } ] }, @@ -41599,9 +39905,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_dye" - ] + "items": "minecraft:pink_dye" } ] }, @@ -41611,9 +39915,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_dye" - ] + "items": "minecraft:red_dye" } ] }, @@ -41647,9 +39949,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_dye" - ] + "items": "minecraft:blue_dye" } ] }, @@ -41659,9 +39959,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_dye" - ] + "items": "minecraft:red_dye" } ] }, @@ -41677,9 +39975,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -41707,9 +40003,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lilac" - ] + "items": "minecraft:lilac" } ] }, @@ -41741,9 +40035,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_dye" - ] + "items": "minecraft:pink_dye" } ] }, @@ -41753,9 +40045,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:purple_dye" - ] + "items": "minecraft:purple_dye" } ] }, @@ -41788,9 +40078,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:compass" - ] + "items": "minecraft:compass" } ] }, @@ -41822,9 +40110,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:melon_slice" - ] + "items": "minecraft:melon_slice" } ] }, @@ -41856,9 +40142,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:enchanted_golden_apple" - ] + "items": "minecraft:enchanted_golden_apple" } ] }, @@ -41890,9 +40174,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:disc_fragment_5" - ] + "items": "minecraft:disc_fragment_5" } ] }, @@ -41924,9 +40206,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_scrap" - ] + "items": "minecraft:netherite_scrap" } ] }, @@ -41958,9 +40238,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_block" - ] + "items": "minecraft:netherite_block" } ] }, @@ -41992,9 +40270,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:ancient_debris" - ] + "items": "minecraft:ancient_debris" } ] }, @@ -42026,9 +40302,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:ancient_debris" - ] + "items": "minecraft:ancient_debris" } ] }, @@ -42060,9 +40334,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_upgrade_smithing_template" - ] + "items": "minecraft:netherite_upgrade_smithing_template" } ] }, @@ -42094,9 +40366,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherrack" - ] + "items": "minecraft:netherrack" } ] }, @@ -42128,9 +40398,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:orange_tulip" - ] + "items": "minecraft:orange_tulip" } ] }, @@ -42162,9 +40430,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_dye" - ] + "items": "minecraft:red_dye" } ] }, @@ -42180,9 +40446,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:yellow_dye" - ] + "items": "minecraft:yellow_dye" } ] }, @@ -42215,9 +40479,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:torchflower" - ] + "items": "minecraft:torchflower" } ] }, @@ -42243,9 +40505,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sugar_cane" - ] + "items": "minecraft:sugar_cane" } ] }, @@ -42277,9 +40537,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:peony" - ] + "items": "minecraft:peony" } ] }, @@ -42311,9 +40569,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_petals" - ] + "items": "minecraft:pink_petals" } ] }, @@ -42345,9 +40601,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pink_tulip" - ] + "items": "minecraft:pink_tulip" } ] }, @@ -42379,9 +40633,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_dye" - ] + "items": "minecraft:red_dye" } ] }, @@ -42397,9 +40649,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:white_dye" - ] + "items": "minecraft:white_dye" } ] }, @@ -42426,9 +40676,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:chorus_fruit" - ] + "items": "minecraft:chorus_fruit" } ] }, @@ -42460,9 +40708,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:pumpkin" - ] + "items": "minecraft:pumpkin" } ] }, @@ -42494,9 +40740,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:blue_dye" - ] + "items": "minecraft:blue_dye" } ] }, @@ -42506,9 +40750,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_dye" - ] + "items": "minecraft:red_dye" } ] }, @@ -42541,9 +40783,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_quartz_ore" - ] + "items": "minecraft:nether_quartz_ore" } ] }, @@ -42575,9 +40815,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:nether_quartz_ore" - ] + "items": "minecraft:nether_quartz_ore" } ] }, @@ -42609,9 +40847,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raiser_armor_trim_smithing_template" - ] + "items": "minecraft:raiser_armor_trim_smithing_template" } ] }, @@ -42643,9 +40879,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raiser_armor_trim_smithing_template" - ] + "items": "minecraft:raiser_armor_trim_smithing_template" } ] }, @@ -42677,9 +40911,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_copper_block" - ] + "items": "minecraft:raw_copper_block" } ] }, @@ -42711,9 +40943,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_gold_block" - ] + "items": "minecraft:raw_gold_block" } ] }, @@ -42745,9 +40975,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:raw_iron_block" - ] + "items": "minecraft:raw_iron_block" } ] }, @@ -42779,9 +41007,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:beetroot" - ] + "items": "minecraft:beetroot" } ] }, @@ -42813,9 +41039,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:poppy" - ] + "items": "minecraft:poppy" } ] }, @@ -42847,9 +41071,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:rose_bush" - ] + "items": "minecraft:rose_bush" } ] }, @@ -42881,9 +41103,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:red_tulip" - ] + "items": "minecraft:red_tulip" } ] }, @@ -42915,9 +41135,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:rib_armor_trim_smithing_template" - ] + "items": "minecraft:rib_armor_trim_smithing_template" } ] }, @@ -42949,9 +41167,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:rib_armor_trim_smithing_template" - ] + "items": "minecraft:rib_armor_trim_smithing_template" } ] }, @@ -42983,9 +41199,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sentry_armor_trim_smithing_template" - ] + "items": "minecraft:sentry_armor_trim_smithing_template" } ] }, @@ -43017,9 +41231,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sentry_armor_trim_smithing_template" - ] + "items": "minecraft:sentry_armor_trim_smithing_template" } ] }, @@ -43051,9 +41263,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:shaper_armor_trim_smithing_template" - ] + "items": "minecraft:shaper_armor_trim_smithing_template" } ] }, @@ -43085,9 +41295,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:shaper_armor_trim_smithing_template" - ] + "items": "minecraft:shaper_armor_trim_smithing_template" } ] }, @@ -43119,9 +41327,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:silence_armor_trim_smithing_template" - ] + "items": "minecraft:silence_armor_trim_smithing_template" } ] }, @@ -43153,9 +41359,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:silence_armor_trim_smithing_template" - ] + "items": "minecraft:silence_armor_trim_smithing_template" } ] }, @@ -43193,9 +41397,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:wither_skeleton_skull" - ] + "items": "minecraft:wither_skeleton_skull" } ] }, @@ -43221,9 +41423,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:slime_block" - ] + "items": "minecraft:slime_block" } ] }, @@ -43255,9 +41455,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:snout_armor_trim_smithing_template" - ] + "items": "minecraft:snout_armor_trim_smithing_template" } ] }, @@ -43289,9 +41487,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:snout_armor_trim_smithing_template" - ] + "items": "minecraft:snout_armor_trim_smithing_template" } ] }, @@ -43323,9 +41519,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spire_armor_trim_smithing_template" - ] + "items": "minecraft:spire_armor_trim_smithing_template" } ] }, @@ -43357,9 +41551,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spire_armor_trim_smithing_template" - ] + "items": "minecraft:spire_armor_trim_smithing_template" } ] }, @@ -43391,7 +41583,7 @@ "conditions": { "items": [ { - "tag": "minecraft:planks" + "items": "#minecraft:planks" } ] }, @@ -43423,9 +41615,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo" - ] + "items": "minecraft:bamboo" } ] }, @@ -43457,9 +41647,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:honey_bottle" - ] + "items": "minecraft:honey_bottle" } ] }, @@ -43491,9 +41679,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sugar_cane" - ] + "items": "minecraft:sugar_cane" } ] }, @@ -43531,9 +41717,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:tide_armor_trim_smithing_template" - ] + "items": "minecraft:tide_armor_trim_smithing_template" } ] }, @@ -43559,9 +41743,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:tide_armor_trim_smithing_template" - ] + "items": "minecraft:tide_armor_trim_smithing_template" } ] }, @@ -43599,9 +41781,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:vex_armor_trim_smithing_template" - ] + "items": "minecraft:vex_armor_trim_smithing_template" } ] }, @@ -43627,9 +41807,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:vex_armor_trim_smithing_template" - ] + "items": "minecraft:vex_armor_trim_smithing_template" } ] }, @@ -43667,9 +41845,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:ward_armor_trim_smithing_template" - ] + "items": "minecraft:ward_armor_trim_smithing_template" } ] }, @@ -43695,9 +41871,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:ward_armor_trim_smithing_template" - ] + "items": "minecraft:ward_armor_trim_smithing_template" } ] }, @@ -43735,9 +41909,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:wayfinder_armor_trim_smithing_template" - ] + "items": "minecraft:wayfinder_armor_trim_smithing_template" } ] }, @@ -43763,9 +41935,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:wayfinder_armor_trim_smithing_template" - ] + "items": "minecraft:wayfinder_armor_trim_smithing_template" } ] }, @@ -43797,9 +41967,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:hay_block" - ] + "items": "minecraft:hay_block" } ] }, @@ -43831,9 +41999,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bone_meal" - ] + "items": "minecraft:bone_meal" } ] }, @@ -43865,9 +42031,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:lily_of_the_valley" - ] + "items": "minecraft:lily_of_the_valley" } ] }, @@ -43905,9 +42069,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:wild_armor_trim_smithing_template" - ] + "items": "minecraft:wild_armor_trim_smithing_template" } ] }, @@ -43933,9 +42095,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:wild_armor_trim_smithing_template" - ] + "items": "minecraft:wild_armor_trim_smithing_template" } ] }, @@ -43967,9 +42127,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:book" - ] + "items": "minecraft:book" } ] }, @@ -44001,9 +42159,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dandelion" - ] + "items": "minecraft:dandelion" } ] }, @@ -44035,9 +42191,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:sunflower" - ] + "items": "minecraft:sunflower" } ] }, @@ -44069,9 +42223,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:acacia_planks" - ] + "items": "minecraft:acacia_planks" } ] }, @@ -44103,9 +42255,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:acacia_planks" - ] + "items": "minecraft:acacia_planks" } ] }, @@ -44137,9 +42287,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:acacia_planks" - ] + "items": "minecraft:acacia_planks" } ] }, @@ -44171,9 +42319,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:acacia_planks" - ] + "items": "minecraft:acacia_planks" } ] }, @@ -44205,9 +42351,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:acacia_planks" - ] + "items": "minecraft:acacia_planks" } ] }, @@ -44239,9 +42383,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_planks" - ] + "items": "minecraft:bamboo_planks" } ] }, @@ -44273,9 +42415,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_planks" - ] + "items": "minecraft:bamboo_planks" } ] }, @@ -44307,9 +42447,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_planks" - ] + "items": "minecraft:bamboo_planks" } ] }, @@ -44341,9 +42479,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_planks" - ] + "items": "minecraft:bamboo_planks" } ] }, @@ -44375,9 +42511,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bamboo_planks" - ] + "items": "minecraft:bamboo_planks" } ] }, @@ -44409,9 +42543,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:birch_planks" - ] + "items": "minecraft:birch_planks" } ] }, @@ -44443,9 +42575,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:birch_planks" - ] + "items": "minecraft:birch_planks" } ] }, @@ -44477,9 +42607,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:birch_planks" - ] + "items": "minecraft:birch_planks" } ] }, @@ -44511,9 +42639,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:birch_planks" - ] + "items": "minecraft:birch_planks" } ] }, @@ -44545,9 +42671,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:birch_planks" - ] + "items": "minecraft:birch_planks" } ] }, @@ -44579,9 +42703,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:amethyst_shard" - ] + "items": "minecraft:amethyst_shard" } ] }, @@ -44613,9 +42735,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cherry_planks" - ] + "items": "minecraft:cherry_planks" } ] }, @@ -44647,9 +42767,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cherry_planks" - ] + "items": "minecraft:cherry_planks" } ] }, @@ -44681,9 +42799,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cherry_planks" - ] + "items": "minecraft:cherry_planks" } ] }, @@ -44715,9 +42831,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cherry_planks" - ] + "items": "minecraft:cherry_planks" } ] }, @@ -44749,9 +42863,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cherry_planks" - ] + "items": "minecraft:cherry_planks" } ] }, @@ -44783,9 +42895,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz" - ] + "items": "minecraft:quartz" } ] }, @@ -44817,9 +42927,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crimson_planks" - ] + "items": "minecraft:crimson_planks" } ] }, @@ -44851,9 +42959,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crimson_planks" - ] + "items": "minecraft:crimson_planks" } ] }, @@ -44885,9 +42991,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crimson_planks" - ] + "items": "minecraft:crimson_planks" } ] }, @@ -44919,9 +43023,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crimson_planks" - ] + "items": "minecraft:crimson_planks" } ] }, @@ -44953,9 +43055,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:crimson_planks" - ] + "items": "minecraft:crimson_planks" } ] }, @@ -44987,9 +43087,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_oak_planks" - ] + "items": "minecraft:dark_oak_planks" } ] }, @@ -45021,9 +43119,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_oak_planks" - ] + "items": "minecraft:dark_oak_planks" } ] }, @@ -45055,9 +43151,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_oak_planks" - ] + "items": "minecraft:dark_oak_planks" } ] }, @@ -45089,9 +43183,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_oak_planks" - ] + "items": "minecraft:dark_oak_planks" } ] }, @@ -45123,9 +43215,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:dark_oak_planks" - ] + "items": "minecraft:dark_oak_planks" } ] }, @@ -45157,9 +43247,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz" - ] + "items": "minecraft:quartz" } ] }, @@ -45191,9 +43279,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:bow" - ] + "items": "minecraft:bow" } ] }, @@ -45225,9 +43311,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone" - ] + "items": "minecraft:redstone" } ] }, @@ -45259,9 +43343,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -45293,9 +43375,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:honey_bottle" - ] + "items": "minecraft:honey_bottle" } ] }, @@ -45327,9 +43407,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -45361,9 +43439,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -45395,9 +43471,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -45429,9 +43503,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:jungle_planks" - ] + "items": "minecraft:jungle_planks" } ] }, @@ -45463,9 +43535,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:jungle_planks" - ] + "items": "minecraft:jungle_planks" } ] }, @@ -45497,9 +43567,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:jungle_planks" - ] + "items": "minecraft:jungle_planks" } ] }, @@ -45531,9 +43599,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:jungle_planks" - ] + "items": "minecraft:jungle_planks" } ] }, @@ -45565,9 +43631,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:jungle_planks" - ] + "items": "minecraft:jungle_planks" } ] }, @@ -45599,9 +43663,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:book" - ] + "items": "minecraft:book" } ] }, @@ -45633,9 +43695,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:cobblestone" - ] + "items": "minecraft:cobblestone" } ] }, @@ -45667,9 +43727,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_ingot" - ] + "items": "minecraft:copper_ingot" } ] }, @@ -45701,9 +43759,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -45735,9 +43791,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_planks" - ] + "items": "minecraft:mangrove_planks" } ] }, @@ -45769,9 +43823,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_planks" - ] + "items": "minecraft:mangrove_planks" } ] }, @@ -45803,9 +43855,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_planks" - ] + "items": "minecraft:mangrove_planks" } ] }, @@ -45837,9 +43887,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_planks" - ] + "items": "minecraft:mangrove_planks" } ] }, @@ -45871,9 +43919,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:mangrove_planks" - ] + "items": "minecraft:mangrove_planks" } ] }, @@ -45905,9 +43951,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone" - ] + "items": "minecraft:redstone" } ] }, @@ -45939,9 +43983,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oak_planks" - ] + "items": "minecraft:oak_planks" } ] }, @@ -45973,9 +44015,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oak_planks" - ] + "items": "minecraft:oak_planks" } ] }, @@ -46007,9 +44047,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oak_planks" - ] + "items": "minecraft:oak_planks" } ] }, @@ -46041,9 +44079,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oak_planks" - ] + "items": "minecraft:oak_planks" } ] }, @@ -46075,9 +44111,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:oak_planks" - ] + "items": "minecraft:oak_planks" } ] }, @@ -46109,9 +44143,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:quartz" - ] + "items": "minecraft:quartz" } ] }, @@ -46143,9 +44175,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone" - ] + "items": "minecraft:redstone" } ] }, @@ -46177,9 +44207,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -46211,9 +44239,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:polished_blackstone" - ] + "items": "minecraft:polished_blackstone" } ] }, @@ -46245,9 +44271,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone_block" - ] + "items": "minecraft:redstone_block" } ] }, @@ -46279,9 +44303,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone" - ] + "items": "minecraft:redstone" } ] }, @@ -46313,9 +44335,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_redstone_ore" - ] + "items": "minecraft:deepslate_redstone_ore" } ] }, @@ -46347,9 +44367,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone_ore" - ] + "items": "minecraft:redstone_ore" } ] }, @@ -46381,9 +44399,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:deepslate_redstone_ore" - ] + "items": "minecraft:deepslate_redstone_ore" } ] }, @@ -46415,9 +44431,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone_ore" - ] + "items": "minecraft:redstone_ore" } ] }, @@ -46449,9 +44463,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:glowstone" - ] + "items": "minecraft:glowstone" } ] }, @@ -46483,9 +44495,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone" - ] + "items": "minecraft:redstone" } ] }, @@ -46517,9 +44527,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone_torch" - ] + "items": "minecraft:redstone_torch" } ] }, @@ -46551,9 +44559,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:slime_ball" - ] + "items": "minecraft:slime_ball" } ] }, @@ -46585,9 +44591,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spruce_planks" - ] + "items": "minecraft:spruce_planks" } ] }, @@ -46619,9 +44623,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spruce_planks" - ] + "items": "minecraft:spruce_planks" } ] }, @@ -46653,9 +44655,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spruce_planks" - ] + "items": "minecraft:spruce_planks" } ] }, @@ -46687,9 +44687,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spruce_planks" - ] + "items": "minecraft:spruce_planks" } ] }, @@ -46721,9 +44719,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:spruce_planks" - ] + "items": "minecraft:spruce_planks" } ] }, @@ -46755,9 +44751,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:slime_ball" - ] + "items": "minecraft:slime_ball" } ] }, @@ -46789,9 +44783,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -46823,9 +44815,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stone" - ] + "items": "minecraft:stone" } ] }, @@ -46857,9 +44847,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:hay_block" - ] + "items": "minecraft:hay_block" } ] }, @@ -46869,9 +44857,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone" - ] + "items": "minecraft:redstone" } ] }, @@ -46904,9 +44890,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gunpowder" - ] + "items": "minecraft:gunpowder" } ] }, @@ -46944,9 +44928,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:tripwire_hook" - ] + "items": "minecraft:tripwire_hook" } ] }, @@ -46972,9 +44954,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:string" - ] + "items": "minecraft:string" } ] }, @@ -47006,9 +44986,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_planks" - ] + "items": "minecraft:warped_planks" } ] }, @@ -47040,9 +45018,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_planks" - ] + "items": "minecraft:warped_planks" } ] }, @@ -47074,9 +45050,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_planks" - ] + "items": "minecraft:warped_planks" } ] }, @@ -47108,9 +45082,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_planks" - ] + "items": "minecraft:warped_planks" } ] }, @@ -47142,9 +45114,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_planks" - ] + "items": "minecraft:warped_planks" } ] }, @@ -47176,9 +45146,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_ingot" - ] + "items": "minecraft:copper_ingot" } ] }, @@ -47210,9 +45178,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone" - ] + "items": "minecraft:redstone" } ] }, @@ -47244,9 +45210,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:redstone" - ] + "items": "minecraft:redstone" } ] }, @@ -47278,9 +45242,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -47312,9 +45274,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -47346,9 +45306,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -47380,9 +45338,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": "minecraft:diamond" } ] }, @@ -47414,9 +45370,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:string" - ] + "items": "minecraft:string" } ] }, @@ -47448,9 +45402,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:flint" - ] + "items": "minecraft:flint" } ] }, @@ -47460,9 +45412,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:obsidian" - ] + "items": "minecraft:obsidian" } ] }, @@ -47495,9 +45445,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -47529,9 +45477,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -47563,9 +45509,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -47597,9 +45541,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": "minecraft:gold_ingot" } ] }, @@ -47631,9 +45573,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -47665,9 +45605,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -47699,9 +45637,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -47733,9 +45669,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -47767,9 +45701,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:slime_ball" - ] + "items": "minecraft:slime_ball" } ] }, @@ -47801,9 +45733,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -47835,9 +45765,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -47869,9 +45797,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -47903,9 +45829,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": "minecraft:netherite_ingot" } ] }, @@ -47937,9 +45861,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:echo_shard" - ] + "items": "minecraft:echo_shard" } ] }, @@ -47971,9 +45893,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -48005,9 +45925,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:amethyst_shard" - ] + "items": "minecraft:amethyst_shard" } ] }, @@ -48039,7 +45957,7 @@ "conditions": { "items": [ { - "tag": "minecraft:stone_tool_materials" + "items": "#minecraft:stone_tool_materials" } ] }, @@ -48071,7 +45989,7 @@ "conditions": { "items": [ { - "tag": "minecraft:stone_tool_materials" + "items": "#minecraft:stone_tool_materials" } ] }, @@ -48103,7 +46021,7 @@ "conditions": { "items": [ { - "tag": "minecraft:stone_tool_materials" + "items": "#minecraft:stone_tool_materials" } ] }, @@ -48135,7 +46053,7 @@ "conditions": { "items": [ { - "tag": "minecraft:stone_tool_materials" + "items": "#minecraft:stone_tool_materials" } ] }, @@ -48167,9 +46085,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stick" - ] + "items": "minecraft:stick" } ] }, @@ -48201,9 +46117,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stick" - ] + "items": "minecraft:stick" } ] }, @@ -48235,9 +46149,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stick" - ] + "items": "minecraft:stick" } ] }, @@ -48269,9 +46181,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:stick" - ] + "items": "minecraft:stick" } ] }, @@ -48331,7 +46241,7 @@ "conditions": { "items": [ { - "tag": "minecraft:boats" + "items": "#minecraft:boats" } ] }, @@ -48363,9 +46273,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:rail" - ] + "items": "minecraft:rail" } ] }, @@ -48397,7 +46305,7 @@ "conditions": { "items": [ { - "tag": "minecraft:boats" + "items": "#minecraft:boats" } ] }, @@ -48485,7 +46393,7 @@ "conditions": { "items": [ { - "tag": "minecraft:boats" + "items": "#minecraft:boats" } ] }, @@ -48517,9 +46425,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:carrot" - ] + "items": "minecraft:carrot" } ] }, @@ -48579,7 +46485,7 @@ "conditions": { "items": [ { - "tag": "minecraft:boats" + "items": "#minecraft:boats" } ] }, @@ -48611,9 +46517,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:minecart" - ] + "items": "minecraft:minecart" } ] }, @@ -48673,7 +46577,7 @@ "conditions": { "items": [ { - "tag": "minecraft:boats" + "items": "#minecraft:boats" } ] }, @@ -48705,9 +46609,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:rail" - ] + "items": "minecraft:rail" } ] }, @@ -48739,9 +46641,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:minecart" - ] + "items": "minecraft:minecart" } ] }, @@ -48773,9 +46673,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:minecart" - ] + "items": "minecraft:minecart" } ] }, @@ -48835,7 +46733,7 @@ "conditions": { "items": [ { - "tag": "minecraft:boats" + "items": "#minecraft:boats" } ] }, @@ -48895,7 +46793,7 @@ "conditions": { "items": [ { - "tag": "minecraft:boats" + "items": "#minecraft:boats" } ] }, @@ -48927,9 +46825,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": "minecraft:iron_ingot" } ] }, @@ -48989,7 +46885,7 @@ "conditions": { "items": [ { - "tag": "minecraft:boats" + "items": "#minecraft:boats" } ] }, @@ -49021,9 +46917,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:rail" - ] + "items": "minecraft:rail" } ] }, @@ -49055,9 +46949,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:minecart" - ] + "items": "minecraft:minecart" } ] }, @@ -49117,7 +47009,7 @@ "conditions": { "items": [ { - "tag": "minecraft:boats" + "items": "#minecraft:boats" } ] }, @@ -49149,9 +47041,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:minecart" - ] + "items": "minecraft:minecart" } ] }, @@ -49189,9 +47079,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:warped_fungus" - ] + "items": "minecraft:warped_fungus" } ] }, diff --git a/Obsidian/Assets/biomes.json b/Obsidian/Assets/biomes.json index 9160581ae..ece387a59 100644 --- a/Obsidian/Assets/biomes.json +++ b/Obsidian/Assets/biomes.json @@ -30,7 +30,161 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_gold_extra", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_grass_badlands", + "minecraft:patch_dead_bush_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_badlands", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_decorated" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:armadillo", + "maxCount": 2, + "minCount": 1, + "weight": 6 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -62,7 +216,205 @@ "scale": 0, "downfall": 0.9, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:bamboo", + "minecraft:bamboo_vegetation", + "minecraft:flower_warm", + "minecraft:patch_grass_jungle", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:vines", + "minecraft:patch_melon" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:parrot", + "maxCount": 2, + "minCount": 1, + "weight": 40 + }, + { + "type": "minecraft:panda", + "maxCount": 2, + "minCount": 1, + "weight": 80 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:ocelot", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -105,7 +457,71 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [], + [], + [], + [ + "minecraft:delta", + "minecraft:small_basalt_columns", + "minecraft:large_basalt_columns" + ], + [], + [], + [ + "minecraft:basalt_blobs", + "minecraft:blackstone_blobs", + "minecraft:spring_delta", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:brown_mushroom_nether", + "minecraft:red_mushroom_nether", + "minecraft:ore_magma", + "minecraft:spring_closed_double", + "minecraft:ore_gold_deltas", + "minecraft:ore_quartz_deltas", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ] + ], + "carvers": { + "air": "minecraft:nether_cave" + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:ghast", + "maxCount": 1, + "minCount": 1, + "weight": 40 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 5, + "minCount": 2, + "weight": 100 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -131,7 +547,159 @@ "scale": 0, "downfall": 0.4, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:turtle", + "maxCount": 5, + "minCount": 2, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -163,7 +731,179 @@ "scale": 0, "downfall": 0.6, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:forest_flowers", + "minecraft:trees_birch", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -195,7 +935,172 @@ "scale": 0, "downfall": 0.8, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_grass_plain", + "minecraft:flower_cherry", + "minecraft:trees_cherry" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:pig", + "maxCount": 2, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:rabbit", + "maxCount": 6, + "minCount": 2, + "weight": 2 + }, + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 2, + "weight": 2 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -221,7 +1126,182 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:seagrass_cold", + "minecraft:seagrass_simple", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 15 + }, + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 3 + } + ] + }, + "spawn_costs": {} } }, { @@ -264,7 +1344,79 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:weeping_vines", + "minecraft:crimson_fungi", + "minecraft:crimson_forest_vegetation" + ] + ], + "carvers": { + "air": "minecraft:nether_cave" + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:zombified_piglin", + "maxCount": 4, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:hoglin", + "maxCount": 4, + "minCount": 3, + "weight": 9 + }, + { + "type": "minecraft:piglin", + "maxCount": 4, + "minCount": 3, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -297,7 +1449,179 @@ "scale": 0, "downfall": 0.8, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:dark_forest_vegetation", + "minecraft:forest_flowers", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -323,7 +1647,182 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:seagrass_deep_cold", + "minecraft:seagrass_simple", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 15 + }, + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 3 + } + ] + }, + "spawn_costs": {} } }, { @@ -355,7 +1854,88 @@ "scale": 0, "downfall": 0.4, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [ + "minecraft:sculk_vein", + "minecraft:sculk_patch_deep_dark" + ], + [], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -382,7 +1962,184 @@ "downfall": 0.5, "has_precipitation": true, "temperature_modifier": "frozen", - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:iceberg_packed", + "minecraft:iceberg_blue", + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:blue_ice" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + } + ] + }, + "spawn_costs": {} } }, { @@ -408,7 +2165,194 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:seagrass_deep_warm", + "minecraft:seagrass_simple", + "minecraft:kelp_warm" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 8 + }, + { + "type": "minecraft:pufferfish", + "maxCount": 3, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 8 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 2 + } + ] + }, + "spawn_costs": {} } }, { @@ -434,7 +2378,182 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:seagrass_deep", + "minecraft:seagrass_simple", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 10 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ] + }, + "spawn_costs": {} } }, { @@ -466,7 +2585,171 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:fossil_upper", + "minecraft:fossil_lower", + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:desert_well" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:patch_dead_bush_2", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_desert", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_desert" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 19 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:husk", + "maxCount": 4, + "minCount": 4, + "weight": 80 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -498,7 +2781,164 @@ "scale": 0, "downfall": 0.4, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode", + "minecraft:large_dripstone" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper_large", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [ + "minecraft:dripstone_cluster", + "minecraft:pointed_dripstone" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 4, + "minCount": 4, + "weight": 95 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -524,7 +2964,27 @@ "scale": 0, "downfall": 0.5, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [], + "carvers": null, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -550,7 +3010,42 @@ "scale": 0, "downfall": 0.5, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [], + [], + [], + [ + "minecraft:end_gateway_return" + ], + [], + [], + [], + [], + [ + "minecraft:chorus_plant" + ] + ], + "carvers": null, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -576,7 +3071,27 @@ "scale": 0, "downfall": 0.5, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [], + "carvers": null, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -608,7 +3123,161 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_gold_extra", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_grass_badlands", + "minecraft:patch_dead_bush_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_badlands", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_decorated" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:armadillo", + "maxCount": 2, + "minCount": 1, + "weight": 6 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -640,7 +3309,185 @@ "scale": 0, "downfall": 0.8, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_forest_flowers", + "minecraft:trees_flower_forest", + "minecraft:flower_flower_forest", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -672,7 +3519,185 @@ "scale": 0, "downfall": 0.8, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:forest_flowers", + "minecraft:trees_birch_and_oak", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -699,7 +3724,184 @@ "downfall": 0.5, "has_precipitation": true, "temperature_modifier": "frozen", - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:iceberg_packed", + "minecraft:iceberg_blue", + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:blue_ice" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + } + ] + }, + "spawn_costs": {} } }, { @@ -731,7 +3933,157 @@ "scale": 0, "downfall": 0.9, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:goat", + "maxCount": 3, + "minCount": 1, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -757,7 +4109,173 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 5 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 2 + } + ] + }, + "spawn_costs": {} } }, { @@ -789,7 +4307,172 @@ "scale": 0, "downfall": 0.8, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_grove", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:wolf", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 8 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 4 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -815,7 +4498,175 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:ice_spike", + "minecraft:ice_patch" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_snowy", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:stray", + "maxCount": 4, + "minCount": 4, + "weight": 80 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -847,7 +4698,157 @@ "scale": 0, "downfall": 0.9, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:goat", + "maxCount": 3, + "minCount": 1, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -879,7 +4880,205 @@ "scale": 0, "downfall": 0.9, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:bamboo_light", + "minecraft:trees_jungle", + "minecraft:flower_warm", + "minecraft:patch_grass_jungle", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:vines", + "minecraft:patch_melon" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:parrot", + "maxCount": 2, + "minCount": 1, + "weight": 40 + }, + { + "type": "minecraft:panda", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:ocelot", + "maxCount": 3, + "minCount": 1, + "weight": 2 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -905,7 +5104,193 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:seagrass_warm", + "minecraft:kelp_warm" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 15 + }, + { + "type": "minecraft:pufferfish", + "maxCount": 3, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 2, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 2 + } + ] + }, + "spawn_costs": {} } }, { @@ -937,7 +5322,169 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_clay", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:lush_caves_ceiling_vegetation", + "minecraft:cave_vines", + "minecraft:lush_caves_clay", + "minecraft:lush_caves_vegetation", + "minecraft:rooted_azalea_tree", + "minecraft:spore_blossom", + "minecraft:classic_vines_cave_feature" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [ + { + "type": "minecraft:axolotl", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -970,7 +5517,172 @@ "scale": 0, "downfall": 0.9, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:fossil_upper", + "minecraft:fossil_lower", + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_grass", + "minecraft:disk_clay" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_mangrove", + "minecraft:patch_grass_normal", + "minecraft:patch_dead_bush", + "minecraft:patch_waterlily", + "minecraft:seagrass_swamp" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:frog", + "maxCount": 5, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:slime", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1002,7 +5714,172 @@ "scale": 0, "downfall": 0.8, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_grass_plain", + "minecraft:flower_meadow", + "minecraft:trees_meadow" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:donkey", + "maxCount": 2, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:rabbit", + "maxCount": 6, + "minCount": 2, + "weight": 2 + }, + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 2, + "weight": 2 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1028,7 +5905,109 @@ "scale": 0, "downfall": 1, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:mushroom_island_vegetation", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:mooshroom", + "maxCount": 8, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1065,7 +6044,91 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:brown_mushroom_nether", + "minecraft:red_mushroom_nether", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal" + ] + ], + "carvers": { + "air": "minecraft:nether_cave" + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:ghast", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombified_piglin", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 4, + "minCount": 4, + "weight": 2 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 1 + }, + { + "type": "minecraft:piglin", + "maxCount": 4, + "minCount": 4, + "weight": 15 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1091,7 +6154,182 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:seagrass_normal", + "minecraft:seagrass_simple", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 10 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ] + }, + "spawn_costs": {} } }, { @@ -1123,7 +6361,179 @@ "scale": 0, "downfall": 0.6, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:forest_flowers", + "minecraft:birch_tall", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1155,7 +6565,202 @@ "scale": 0, "downfall": 0.8, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode", + "minecraft:forest_rock" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_old_growth_pine_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga", + "minecraft:patch_dead_bush", + "minecraft:brown_mushroom_old_growth", + "minecraft:red_mushroom_old_growth", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:patch_berry_common" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 25 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1187,7 +6792,202 @@ "scale": 0, "downfall": 0.8, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode", + "minecraft:forest_rock" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_old_growth_spruce_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga", + "minecraft:patch_dead_bush", + "minecraft:brown_mushroom_old_growth", + "minecraft:red_mushroom_old_growth", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:patch_berry_common" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1213,7 +7013,191 @@ "scale": 0, "downfall": 0.4, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 5 + }, + { + "type": "minecraft:donkey", + "maxCount": 3, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1239,7 +7223,174 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:seagrass_river" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 100 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 5 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 2 + } + ] + }, + "spawn_costs": {} } }, { @@ -1265,7 +7416,197 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass", + "minecraft:trees_savanna", + "minecraft:flower_warm", + "minecraft:patch_grass_savanna", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:donkey", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:armadillo", + "maxCount": 3, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1291,7 +7632,209 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass", + "minecraft:trees_savanna", + "minecraft:flower_warm", + "minecraft:patch_grass_savanna", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:donkey", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:armadillo", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:llama", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 8, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1317,7 +7860,31 @@ "scale": 0, "downfall": 0.5, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [ + "minecraft:end_island_decorated" + ] + ], + "carvers": null, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1343,7 +7910,152 @@ "scale": 0, "downfall": 0.3, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1369,7 +8081,172 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_snowy", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:stray", + "maxCount": 4, + "minCount": 4, + "weight": 80 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1401,7 +8278,165 @@ "scale": 0, "downfall": 0.9, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:goat", + "maxCount": 3, + "minCount": 1, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1427,7 +8462,198 @@ "scale": 0, "downfall": 0.4, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga_2", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:patch_berry_rare" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1470,7 +8696,96 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [], + [ + "minecraft:basalt_pillar" + ], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:patch_crimson_roots", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_soul_sand", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava" + ] + ], + "carvers": { + "air": "minecraft:nether_cave" + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:skeleton", + "maxCount": 5, + "minCount": 5, + "weight": 20 + }, + { + "type": "minecraft:ghast", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 1 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": { + "minecraft:enderman": { + "charge": 0.7, + "energy_budget": 0.15 + }, + "minecraft:ghast": { + "charge": 0.7, + "energy_budget": 0.15 + }, + "minecraft:skeleton": { + "charge": 0.7, + "energy_budget": 0.15 + }, + "minecraft:strider": { + "charge": 0.7, + "energy_budget": 0.15 + } + } } }, { @@ -1502,7 +8817,192 @@ "scale": 0, "downfall": 0.8, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_sparse_jungle", + "minecraft:flower_warm", + "minecraft:patch_grass_jungle", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:vines", + "minecraft:patch_melon_sparse" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1534,7 +9034,149 @@ "scale": 0, "downfall": 0.3, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1560,7 +9202,152 @@ "scale": 0, "downfall": 0.3, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1586,7 +9373,192 @@ "scale": 0, "downfall": 0.4, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_sunflower", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 5 + }, + { + "type": "minecraft:donkey", + "maxCount": 3, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1619,7 +9591,195 @@ "scale": 0, "downfall": 0.9, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:fossil_upper", + "minecraft:fossil_lower", + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_clay" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_swamp", + "minecraft:flower_swamp", + "minecraft:patch_grass_normal", + "minecraft:patch_dead_bush", + "minecraft:patch_waterlily", + "minecraft:brown_mushroom_swamp", + "minecraft:red_mushroom_swamp", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_swamp", + "minecraft:patch_pumpkin", + "minecraft:seagrass_swamp" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:frog", + "maxCount": 5, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:slime", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1645,7 +9805,198 @@ "scale": 0, "downfall": 0.8, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga_2", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:patch_berry_common" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1671,7 +10022,35 @@ "scale": 0, "downfall": 0.5, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [], + [], + [], + [ + "minecraft:end_spike" + ] + ], + "carvers": null, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1697,7 +10076,34 @@ "scale": 0, "downfall": 0.5, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:void_start_platform" + ] + ], + "carvers": null, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1723,7 +10129,188 @@ "scale": 0, "downfall": 0.5, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:warm_ocean_vegetation", + "minecraft:seagrass_warm", + "minecraft:sea_pickle" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:pufferfish", + "maxCount": 3, + "minCount": 1, + "weight": 15 + }, + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 2 + } + ] + }, + "spawn_costs": {} } }, { @@ -1766,7 +10353,74 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:warped_fungi", + "minecraft:warped_forest_vegetation", + "minecraft:nether_sprouts", + "minecraft:twisting_vines" + ] + ], + "carvers": { + "air": "minecraft:nether_cave" + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 1 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": { + "minecraft:enderman": { + "charge": 1.0, + "energy_budget": 0.12 + } + } } }, { @@ -1792,7 +10446,187 @@ "scale": 0, "downfall": 0.3, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_forest", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:llama", + "maxCount": 6, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1818,7 +10652,187 @@ "scale": 0, "downfall": 0.3, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_hills", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:llama", + "maxCount": 6, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1844,7 +10858,187 @@ "scale": 0, "downfall": 0.3, "has_precipitation": true, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_hills", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:llama", + "maxCount": 6, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1870,7 +11064,196 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_savanna", + "minecraft:flower_default", + "minecraft:patch_grass_normal", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:donkey", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:armadillo", + "maxCount": 3, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } }, { @@ -1902,7 +11285,168 @@ "scale": 0, "downfall": 0, "has_precipitation": false, - "player_spawn_friendly": false + "player_spawn_friendly": false, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_gold_extra", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_badlands", + "minecraft:patch_grass_badlands", + "minecraft:patch_dead_bush_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_badlands", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_decorated" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:armadillo", + "maxCount": 2, + "minCount": 1, + "weight": 6 + }, + { + "type": "minecraft:wolf", + "maxCount": 8, + "minCount": 4, + "weight": 2 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {} } } ] diff --git a/Obsidian/Assets/blocks.json b/Obsidian/Assets/blocks.json index 6df886b14..769af7782 100644 --- a/Obsidian/Assets/blocks.json +++ b/Obsidian/Assets/blocks.json @@ -1,5 +1,11 @@ { "minecraft:acacia_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "acacia", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -214,6 +220,11 @@ ] }, "minecraft:acacia_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "acacia", + "properties": {} + }, "properties": { "facing": [ "north", @@ -883,6 +894,10 @@ ] }, "minecraft:acacia_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -1230,6 +1245,11 @@ ] }, "minecraft:acacia_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "acacia" + }, "properties": { "facing": [ "north", @@ -1543,6 +1563,11 @@ ] }, "minecraft:acacia_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "acacia" + }, "properties": { "attached": [ "true", @@ -2088,6 +2113,10 @@ ] }, "minecraft:acacia_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, "properties": { "distance": [ "1", @@ -2336,6 +2365,10 @@ ] }, "minecraft:acacia_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -2366,6 +2399,10 @@ ] }, "minecraft:acacia_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -2374,6 +2411,11 @@ ] }, "minecraft:acacia_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "acacia", + "properties": {} + }, "properties": { "powered": [ "true", @@ -2397,6 +2439,11 @@ ] }, "minecraft:acacia_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "acacia" + }, "properties": { "stage": [ "0", @@ -2420,6 +2467,11 @@ ] }, "minecraft:acacia_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "acacia" + }, "properties": { "rotation": [ "0", @@ -2673,6 +2725,10 @@ ] }, "minecraft:acacia_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -2731,6 +2787,13 @@ ] }, "minecraft:acacia_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:acacia_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -3479,6 +3542,11 @@ ] }, "minecraft:acacia_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "acacia", + "properties": {} + }, "properties": { "facing": [ "north", @@ -4148,6 +4216,11 @@ ] }, "minecraft:acacia_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "acacia" + }, "properties": { "facing": [ "north", @@ -4221,6 +4294,11 @@ ] }, "minecraft:acacia_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "acacia" + }, "properties": { "facing": [ "north", @@ -4294,6 +4372,10 @@ ] }, "minecraft:acacia_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -4324,6 +4406,10 @@ ] }, "minecraft:activator_rail": { + "definition": { + "type": "minecraft:powered_rail", + "properties": {} + }, "properties": { "powered": [ "true", @@ -4539,6 +4625,10 @@ ] }, "minecraft:air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, "states": [ { "default": true, @@ -4547,6 +4637,16 @@ ] }, "minecraft:allium": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 80, + "id": "minecraft:fire_resistance" + } + ] + }, "states": [ { "default": true, @@ -4555,6 +4655,10 @@ ] }, "minecraft:amethyst_block": { + "definition": { + "type": "minecraft:amethyst", + "properties": {} + }, "states": [ { "default": true, @@ -4563,6 +4667,12 @@ ] }, "minecraft:amethyst_cluster": { + "definition": { + "type": "minecraft:amethyst_cluster", + "aabb_offset": 3.0, + "height": 7.0, + "properties": {} + }, "properties": { "facing": [ "north", @@ -4666,6 +4776,10 @@ ] }, "minecraft:ancient_debris": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -4674,6 +4788,10 @@ ] }, "minecraft:andesite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -4682,6 +4800,10 @@ ] }, "minecraft:andesite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -4740,6 +4862,13 @@ ] }, "minecraft:andesite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:andesite" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -5488,6 +5617,10 @@ ] }, "minecraft:andesite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -9087,6 +9220,10 @@ ] }, "minecraft:anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, "properties": { "facing": [ "north", @@ -9124,6 +9261,13 @@ ] }, "minecraft:attached_melon_stem": { + "definition": { + "type": "minecraft:attached_stem", + "fruit": "minecraft:melon", + "properties": {}, + "seed": "minecraft:melon_seeds", + "stem": "minecraft:melon_stem" + }, "properties": { "facing": [ "north", @@ -9161,6 +9305,13 @@ ] }, "minecraft:attached_pumpkin_stem": { + "definition": { + "type": "minecraft:attached_stem", + "fruit": "minecraft:pumpkin", + "properties": {}, + "seed": "minecraft:pumpkin_seeds", + "stem": "minecraft:pumpkin_stem" + }, "properties": { "facing": [ "north", @@ -9198,6 +9349,10 @@ ] }, "minecraft:azalea": { + "definition": { + "type": "minecraft:azalea", + "properties": {} + }, "states": [ { "default": true, @@ -9206,6 +9361,10 @@ ] }, "minecraft:azalea_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, "properties": { "distance": [ "1", @@ -9454,6 +9613,15 @@ ] }, "minecraft:azure_bluet": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "id": "minecraft:blindness" + } + ] + }, "states": [ { "default": true, @@ -9462,6 +9630,10 @@ ] }, "minecraft:bamboo": { + "definition": { + "type": "minecraft:bamboo_stalk", + "properties": {} + }, "properties": { "age": [ "0", @@ -9578,6 +9750,10 @@ ] }, "minecraft:bamboo_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -9608,6 +9784,12 @@ ] }, "minecraft:bamboo_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "bamboo", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -9822,6 +10004,11 @@ ] }, "minecraft:bamboo_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "bamboo", + "properties": {} + }, "properties": { "facing": [ "north", @@ -10491,6 +10678,10 @@ ] }, "minecraft:bamboo_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -10838,6 +11029,11 @@ ] }, "minecraft:bamboo_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "bamboo" + }, "properties": { "facing": [ "north", @@ -11151,6 +11347,11 @@ ] }, "minecraft:bamboo_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "bamboo" + }, "properties": { "attached": [ "true", @@ -11696,6 +11897,10 @@ ] }, "minecraft:bamboo_mosaic": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -11704,6 +11909,10 @@ ] }, "minecraft:bamboo_mosaic_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -11762,6 +11971,13 @@ ] }, "minecraft:bamboo_mosaic_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bamboo_mosaic" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -12510,6 +12726,10 @@ ] }, "minecraft:bamboo_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -12518,6 +12738,11 @@ ] }, "minecraft:bamboo_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "bamboo", + "properties": {} + }, "properties": { "powered": [ "true", @@ -12541,6 +12766,10 @@ ] }, "minecraft:bamboo_sapling": { + "definition": { + "type": "minecraft:bamboo_sapling", + "properties": {} + }, "states": [ { "default": true, @@ -12549,6 +12778,11 @@ ] }, "minecraft:bamboo_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "bamboo" + }, "properties": { "rotation": [ "0", @@ -12802,6 +13036,10 @@ ] }, "minecraft:bamboo_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -12860,6 +13098,13 @@ ] }, "minecraft:bamboo_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bamboo_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -13608,6 +13853,11 @@ ] }, "minecraft:bamboo_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "bamboo", + "properties": {} + }, "properties": { "facing": [ "north", @@ -14277,6 +14527,11 @@ ] }, "minecraft:bamboo_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "bamboo" + }, "properties": { "facing": [ "north", @@ -14350,6 +14605,11 @@ ] }, "minecraft:bamboo_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "bamboo" + }, "properties": { "facing": [ "north", @@ -14423,6 +14683,10 @@ ] }, "minecraft:barrel": { + "definition": { + "type": "minecraft:barrel", + "properties": {} + }, "properties": { "facing": [ "north", @@ -14526,6 +14790,10 @@ ] }, "minecraft:barrier": { + "definition": { + "type": "minecraft:barrier", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -14549,6 +14817,10 @@ ] }, "minecraft:basalt": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -14579,6 +14851,10 @@ ] }, "minecraft:beacon": { + "definition": { + "type": "minecraft:beacon", + "properties": {} + }, "states": [ { "default": true, @@ -14587,6 +14863,10 @@ ] }, "minecraft:bedrock": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -14595,6 +14875,10 @@ ] }, "minecraft:bee_nest": { + "definition": { + "type": "minecraft:beehive", + "properties": {} + }, "properties": { "facing": [ "north", @@ -14784,6 +15068,10 @@ ] }, "minecraft:beehive": { + "definition": { + "type": "minecraft:beehive", + "properties": {} + }, "properties": { "facing": [ "north", @@ -14973,6 +15261,10 @@ ] }, "minecraft:beetroots": { + "definition": { + "type": "minecraft:beetroot", + "properties": {} + }, "properties": { "age": [ "0", @@ -15010,6 +15302,10 @@ ] }, "minecraft:bell": { + "definition": { + "type": "minecraft:bell", + "properties": {} + }, "properties": { "attachment": [ "floor", @@ -15289,6 +15585,10 @@ ] }, "minecraft:big_dripleaf": { + "definition": { + "type": "minecraft:big_dripleaf", + "properties": {} + }, "properties": { "facing": [ "north", @@ -15568,6 +15868,10 @@ ] }, "minecraft:big_dripleaf_stem": { + "definition": { + "type": "minecraft:big_dripleaf_stem", + "properties": {} + }, "properties": { "facing": [ "north", @@ -15641,6 +15945,12 @@ ] }, "minecraft:birch_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "birch", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -15855,6 +16165,11 @@ ] }, "minecraft:birch_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "birch", + "properties": {} + }, "properties": { "facing": [ "north", @@ -16524,6 +16839,10 @@ ] }, "minecraft:birch_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -16871,6 +17190,11 @@ ] }, "minecraft:birch_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "birch" + }, "properties": { "facing": [ "north", @@ -17184,6 +17508,11 @@ ] }, "minecraft:birch_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "birch" + }, "properties": { "attached": [ "true", @@ -17729,6 +18058,10 @@ ] }, "minecraft:birch_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, "properties": { "distance": [ "1", @@ -17977,6 +18310,10 @@ ] }, "minecraft:birch_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -18007,6 +18344,10 @@ ] }, "minecraft:birch_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -18015,6 +18356,11 @@ ] }, "minecraft:birch_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "birch", + "properties": {} + }, "properties": { "powered": [ "true", @@ -18038,6 +18384,11 @@ ] }, "minecraft:birch_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "birch" + }, "properties": { "stage": [ "0", @@ -18061,6 +18412,11 @@ ] }, "minecraft:birch_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "birch" + }, "properties": { "rotation": [ "0", @@ -18314,6 +18670,10 @@ ] }, "minecraft:birch_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -18372,6 +18732,13 @@ ] }, "minecraft:birch_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:birch_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -19120,6 +19487,11 @@ ] }, "minecraft:birch_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "birch", + "properties": {} + }, "properties": { "facing": [ "north", @@ -19789,6 +20161,11 @@ ] }, "minecraft:birch_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "birch" + }, "properties": { "facing": [ "north", @@ -19862,6 +20239,11 @@ ] }, "minecraft:birch_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "birch" + }, "properties": { "facing": [ "north", @@ -19935,6 +20317,10 @@ ] }, "minecraft:birch_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -19965,6 +20351,11 @@ ] }, "minecraft:black_banner": { + "definition": { + "type": "minecraft:banner", + "color": "black", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -20086,6 +20477,11 @@ ] }, "minecraft:black_bed": { + "definition": { + "type": "minecraft:bed", + "color": "black", + "properties": {} + }, "properties": { "facing": [ "north", @@ -20235,6 +20631,10 @@ ] }, "minecraft:black_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -20384,6 +20784,11 @@ ] }, "minecraft:black_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:black_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -20407,6 +20812,11 @@ ] }, "minecraft:black_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "black", + "properties": {} + }, "states": [ { "default": true, @@ -20415,6 +20825,10 @@ ] }, "minecraft:black_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -20423,6 +20837,11 @@ ] }, "minecraft:black_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:black_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -20431,6 +20850,10 @@ ] }, "minecraft:black_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -20468,6 +20891,11 @@ ] }, "minecraft:black_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "black", + "properties": {} + }, "properties": { "facing": [ "north", @@ -20519,6 +20947,11 @@ ] }, "minecraft:black_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "black", + "properties": {} + }, "states": [ { "default": true, @@ -20527,6 +20960,11 @@ ] }, "minecraft:black_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "black", + "properties": {} + }, "properties": { "east": [ "true", @@ -20874,6 +21312,10 @@ ] }, "minecraft:black_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -20882,6 +21324,11 @@ ] }, "minecraft:black_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "black", + "properties": {} + }, "properties": { "facing": [ "north", @@ -20919,6 +21366,10 @@ ] }, "minecraft:black_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -20927,6 +21378,10 @@ ] }, "minecraft:blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -20935,6 +21390,10 @@ ] }, "minecraft:blackstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -20993,6 +21452,13 @@ ] }, "minecraft:blackstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:blackstone" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -21741,6 +22207,10 @@ ] }, "minecraft:blackstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -25340,6 +25810,10 @@ ] }, "minecraft:blast_furnace": { + "definition": { + "type": "minecraft:blast_furnace", + "properties": {} + }, "properties": { "facing": [ "north", @@ -25413,6 +25887,11 @@ ] }, "minecraft:blue_banner": { + "definition": { + "type": "minecraft:banner", + "color": "blue", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -25534,6 +26013,11 @@ ] }, "minecraft:blue_bed": { + "definition": { + "type": "minecraft:bed", + "color": "blue", + "properties": {} + }, "properties": { "facing": [ "north", @@ -25683,6 +26167,10 @@ ] }, "minecraft:blue_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -25832,6 +26320,11 @@ ] }, "minecraft:blue_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:blue_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -25855,6 +26348,11 @@ ] }, "minecraft:blue_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "blue", + "properties": {} + }, "states": [ { "default": true, @@ -25863,6 +26361,10 @@ ] }, "minecraft:blue_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -25871,6 +26373,11 @@ ] }, "minecraft:blue_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:blue_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -25879,6 +26386,10 @@ ] }, "minecraft:blue_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -25916,6 +26427,10 @@ ] }, "minecraft:blue_ice": { + "definition": { + "type": "minecraft:half_transparent", + "properties": {} + }, "states": [ { "default": true, @@ -25924,6 +26439,16 @@ ] }, "minecraft:blue_orchid": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, "states": [ { "default": true, @@ -25932,6 +26457,11 @@ ] }, "minecraft:blue_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "blue", + "properties": {} + }, "properties": { "facing": [ "north", @@ -25983,6 +26513,11 @@ ] }, "minecraft:blue_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "blue", + "properties": {} + }, "states": [ { "default": true, @@ -25991,6 +26526,11 @@ ] }, "minecraft:blue_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "blue", + "properties": {} + }, "properties": { "east": [ "true", @@ -26338,6 +26878,10 @@ ] }, "minecraft:blue_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -26346,6 +26890,11 @@ ] }, "minecraft:blue_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "blue", + "properties": {} + }, "properties": { "facing": [ "north", @@ -26383,6 +26932,10 @@ ] }, "minecraft:blue_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -26391,6 +26944,10 @@ ] }, "minecraft:bone_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -26421,6 +26978,10 @@ ] }, "minecraft:bookshelf": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -26429,6 +26990,11 @@ ] }, "minecraft:brain_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_brain_coral", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -26452,6 +27018,11 @@ ] }, "minecraft:brain_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_brain_coral_block", + "properties": {} + }, "states": [ { "default": true, @@ -26460,6 +27031,11 @@ ] }, "minecraft:brain_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_brain_coral_fan", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -26483,6 +27059,11 @@ ] }, "minecraft:brain_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_brain_coral_wall_fan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -26556,6 +27137,10 @@ ] }, "minecraft:brewing_stand": { + "definition": { + "type": "minecraft:brewing_stand", + "properties": {} + }, "properties": { "has_bottle_0": [ "true", @@ -26639,6 +27224,10 @@ ] }, "minecraft:brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -26697,6 +27286,13 @@ ] }, "minecraft:brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -27445,6 +28041,10 @@ ] }, "minecraft:brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -31044,6 +31644,10 @@ ] }, "minecraft:bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -31052,6 +31656,11 @@ ] }, "minecraft:brown_banner": { + "definition": { + "type": "minecraft:banner", + "color": "brown", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -31173,6 +31782,11 @@ ] }, "minecraft:brown_bed": { + "definition": { + "type": "minecraft:bed", + "color": "brown", + "properties": {} + }, "properties": { "facing": [ "north", @@ -31322,6 +31936,10 @@ ] }, "minecraft:brown_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -31471,6 +32089,11 @@ ] }, "minecraft:brown_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:brown_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -31494,6 +32117,11 @@ ] }, "minecraft:brown_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "brown", + "properties": {} + }, "states": [ { "default": true, @@ -31502,6 +32130,10 @@ ] }, "minecraft:brown_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -31510,6 +32142,11 @@ ] }, "minecraft:brown_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:brown_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -31518,6 +32155,10 @@ ] }, "minecraft:brown_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -31555,6 +32196,11 @@ ] }, "minecraft:brown_mushroom": { + "definition": { + "type": "minecraft:mushroom", + "feature": "minecraft:huge_brown_mushroom", + "properties": {} + }, "states": [ { "default": true, @@ -31563,6 +32209,10 @@ ] }, "minecraft:brown_mushroom_block": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, "properties": { "down": [ "true", @@ -32298,6 +32948,11 @@ ] }, "minecraft:brown_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "brown", + "properties": {} + }, "properties": { "facing": [ "north", @@ -32349,6 +33004,11 @@ ] }, "minecraft:brown_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "brown", + "properties": {} + }, "states": [ { "default": true, @@ -32357,6 +33017,11 @@ ] }, "minecraft:brown_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "brown", + "properties": {} + }, "properties": { "east": [ "true", @@ -32704,6 +33369,10 @@ ] }, "minecraft:brown_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -32712,6 +33381,11 @@ ] }, "minecraft:brown_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "brown", + "properties": {} + }, "properties": { "facing": [ "north", @@ -32749,6 +33423,10 @@ ] }, "minecraft:brown_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -32757,6 +33435,10 @@ ] }, "minecraft:bubble_column": { + "definition": { + "type": "minecraft:bubble_column", + "properties": {} + }, "properties": { "drag": [ "true", @@ -32780,6 +33462,11 @@ ] }, "minecraft:bubble_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_bubble_coral", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -32803,6 +33490,11 @@ ] }, "minecraft:bubble_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_bubble_coral_block", + "properties": {} + }, "states": [ { "default": true, @@ -32811,6 +33503,11 @@ ] }, "minecraft:bubble_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_bubble_coral_fan", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -32834,6 +33531,11 @@ ] }, "minecraft:bubble_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_bubble_coral_wall_fan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -32907,6 +33609,10 @@ ] }, "minecraft:budding_amethyst": { + "definition": { + "type": "minecraft:budding_amethyst", + "properties": {} + }, "states": [ { "default": true, @@ -32915,6 +33621,10 @@ ] }, "minecraft:cactus": { + "definition": { + "type": "minecraft:cactus", + "properties": {} + }, "properties": { "age": [ "0", @@ -33036,6 +33746,10 @@ ] }, "minecraft:cake": { + "definition": { + "type": "minecraft:cake", + "properties": {} + }, "properties": { "bites": [ "0", @@ -33094,6 +33808,10 @@ ] }, "minecraft:calcite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -33102,6 +33820,10 @@ ] }, "minecraft:calibrated_sculk_sensor": { + "definition": { + "type": "minecraft:calibrated_sculk_sensor", + "properties": {} + }, "properties": { "facing": [ "north", @@ -36598,6 +37320,12 @@ ] }, "minecraft:campfire": { + "definition": { + "type": "minecraft:campfire", + "fire_damage": 1, + "properties": {}, + "spawn_particles": true + }, "properties": { "facing": [ "north", @@ -36911,6 +37639,10 @@ ] }, "minecraft:candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -37060,6 +37792,11 @@ ] }, "minecraft:candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -37083,6 +37820,10 @@ ] }, "minecraft:carrots": { + "definition": { + "type": "minecraft:carrot", + "properties": {} + }, "properties": { "age": [ "0", @@ -37148,6 +37889,10 @@ ] }, "minecraft:cartography_table": { + "definition": { + "type": "minecraft:cartography_table", + "properties": {} + }, "states": [ { "default": true, @@ -37156,6 +37901,10 @@ ] }, "minecraft:carved_pumpkin": { + "definition": { + "type": "minecraft:carved_pumpkin", + "properties": {} + }, "properties": { "facing": [ "north", @@ -37193,6 +37942,10 @@ ] }, "minecraft:cauldron": { + "definition": { + "type": "minecraft:cauldron", + "properties": {} + }, "states": [ { "default": true, @@ -37201,6 +37954,10 @@ ] }, "minecraft:cave_air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, "states": [ { "default": true, @@ -37209,6 +37966,10 @@ ] }, "minecraft:cave_vines": { + "definition": { + "type": "minecraft:cave_vines", + "properties": {} + }, "properties": { "age": [ "0", @@ -37612,6 +38373,10 @@ ] }, "minecraft:cave_vines_plant": { + "definition": { + "type": "minecraft:cave_vines_plant", + "properties": {} + }, "properties": { "berries": [ "true", @@ -37635,6 +38400,10 @@ ] }, "minecraft:chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, "properties": { "axis": [ "x", @@ -37693,6 +38462,11 @@ ] }, "minecraft:chain_command_block": { + "definition": { + "type": "minecraft:command", + "automatic": true, + "properties": {} + }, "properties": { "conditional": [ "true", @@ -37796,6 +38570,12 @@ ] }, "minecraft:cherry_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "cherry", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -38010,6 +38790,11 @@ ] }, "minecraft:cherry_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "cherry", + "properties": {} + }, "properties": { "facing": [ "north", @@ -38679,6 +39464,10 @@ ] }, "minecraft:cherry_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -39026,6 +39815,11 @@ ] }, "minecraft:cherry_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "cherry" + }, "properties": { "facing": [ "north", @@ -39339,6 +40133,11 @@ ] }, "minecraft:cherry_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "cherry" + }, "properties": { "attached": [ "true", @@ -39884,6 +40683,10 @@ ] }, "minecraft:cherry_leaves": { + "definition": { + "type": "minecraft:cherry_leaves", + "properties": {} + }, "properties": { "distance": [ "1", @@ -40132,6 +40935,10 @@ ] }, "minecraft:cherry_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -40162,6 +40969,10 @@ ] }, "minecraft:cherry_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -40170,6 +40981,11 @@ ] }, "minecraft:cherry_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "cherry", + "properties": {} + }, "properties": { "powered": [ "true", @@ -40193,6 +41009,11 @@ ] }, "minecraft:cherry_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "cherry" + }, "properties": { "stage": [ "0", @@ -40216,6 +41037,11 @@ ] }, "minecraft:cherry_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "cherry" + }, "properties": { "rotation": [ "0", @@ -40469,6 +41295,10 @@ ] }, "minecraft:cherry_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -40527,6 +41357,13 @@ ] }, "minecraft:cherry_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cherry_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -41275,6 +42112,11 @@ ] }, "minecraft:cherry_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "cherry", + "properties": {} + }, "properties": { "facing": [ "north", @@ -41944,6 +42786,11 @@ ] }, "minecraft:cherry_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "cherry" + }, "properties": { "facing": [ "north", @@ -42017,6 +42864,11 @@ ] }, "minecraft:cherry_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "cherry" + }, "properties": { "facing": [ "north", @@ -42090,6 +42942,10 @@ ] }, "minecraft:cherry_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -42120,6 +42976,10 @@ ] }, "minecraft:chest": { + "definition": { + "type": "minecraft:chest", + "properties": {} + }, "properties": { "type": [ "single", @@ -42334,6 +43194,10 @@ ] }, "minecraft:chipped_anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, "properties": { "facing": [ "north", @@ -42371,6 +43235,10 @@ ] }, "minecraft:chiseled_bookshelf": { + "definition": { + "type": "minecraft:chiseled_book_shelf", + "properties": {} + }, "properties": { "facing": [ "north", @@ -45480,6 +46348,11 @@ ] }, "minecraft:chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, "states": [ { "default": true, @@ -45488,6 +46361,10 @@ ] }, "minecraft:chiseled_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -45496,6 +46373,10 @@ ] }, "minecraft:chiseled_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -45504,6 +46385,10 @@ ] }, "minecraft:chiseled_polished_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -45512,6 +46397,10 @@ ] }, "minecraft:chiseled_quartz_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -45520,6 +46409,10 @@ ] }, "minecraft:chiseled_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -45528,6 +46421,10 @@ ] }, "minecraft:chiseled_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -45536,6 +46433,10 @@ ] }, "minecraft:chiseled_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -45544,6 +46445,10 @@ ] }, "minecraft:chiseled_tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -45552,6 +46457,10 @@ ] }, "minecraft:chiseled_tuff_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -45560,6 +46469,11 @@ ] }, "minecraft:chorus_flower": { + "definition": { + "type": "minecraft:chorus_flower", + "plant": "minecraft:chorus_plant", + "properties": {} + }, "properties": { "age": [ "0", @@ -45611,6 +46525,10 @@ ] }, "minecraft:chorus_plant": { + "definition": { + "type": "minecraft:chorus_plant", + "properties": {} + }, "properties": { "down": [ "true", @@ -46346,6 +47264,10 @@ ] }, "minecraft:clay": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -46354,6 +47276,10 @@ ] }, "minecraft:coal_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -46362,6 +47288,15 @@ ] }, "minecraft:coal_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "properties": {} + }, "states": [ { "default": true, @@ -46370,6 +47305,10 @@ ] }, "minecraft:coarse_dirt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -46378,6 +47317,10 @@ ] }, "minecraft:cobbled_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -46386,6 +47329,10 @@ ] }, "minecraft:cobbled_deepslate_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -46444,6 +47391,13 @@ ] }, "minecraft:cobbled_deepslate_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cobbled_deepslate" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -47192,6 +48146,10 @@ ] }, "minecraft:cobbled_deepslate_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -50791,6 +51749,10 @@ ] }, "minecraft:cobblestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -50799,6 +51761,10 @@ ] }, "minecraft:cobblestone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -50857,6 +51823,13 @@ ] }, "minecraft:cobblestone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cobblestone" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -51605,6 +52578,10 @@ ] }, "minecraft:cobblestone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -55204,6 +56181,10 @@ ] }, "minecraft:cobweb": { + "definition": { + "type": "minecraft:web", + "properties": {} + }, "states": [ { "default": true, @@ -55212,6 +56193,10 @@ ] }, "minecraft:cocoa": { + "definition": { + "type": "minecraft:cocoa", + "properties": {} + }, "properties": { "age": [ "0", @@ -55314,6 +56299,11 @@ ] }, "minecraft:command_block": { + "definition": { + "type": "minecraft:command", + "automatic": false, + "properties": {} + }, "properties": { "conditional": [ "true", @@ -55417,6 +56407,10 @@ ] }, "minecraft:comparator": { + "definition": { + "type": "minecraft:comparator", + "properties": {} + }, "properties": { "facing": [ "north", @@ -55566,6 +56560,10 @@ ] }, "minecraft:composter": { + "definition": { + "type": "minecraft:composter", + "properties": {} + }, "properties": { "level": [ "0", @@ -55638,6 +56636,10 @@ ] }, "minecraft:conduit": { + "definition": { + "type": "minecraft:conduit", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -55661,6 +56663,11 @@ ] }, "minecraft:copper_block": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, "states": [ { "default": true, @@ -55669,6 +56676,11 @@ ] }, "minecraft:copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "unaffected" + }, "properties": { "lit": [ "true", @@ -55712,6 +56724,12 @@ ] }, "minecraft:copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "unaffected" + }, "properties": { "facing": [ "north", @@ -56381,6 +57399,11 @@ ] }, "minecraft:copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "unaffected" + }, "properties": { "waterlogged": [ "true", @@ -56404,6 +57427,11 @@ ] }, "minecraft:copper_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, "states": [ { "default": true, @@ -56412,6 +57440,12 @@ ] }, "minecraft:copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "unaffected" + }, "properties": { "facing": [ "north", @@ -57081,6 +58115,16 @@ ] }, "minecraft:cornflower": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 120, + "id": "minecraft:jump_boost" + } + ] + }, "states": [ { "default": true, @@ -57089,6 +58133,10 @@ ] }, "minecraft:cracked_deepslate_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -57097,6 +58145,10 @@ ] }, "minecraft:cracked_deepslate_tiles": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -57105,6 +58157,10 @@ ] }, "minecraft:cracked_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -57113,6 +58169,10 @@ ] }, "minecraft:cracked_polished_blackstone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -57121,6 +58181,10 @@ ] }, "minecraft:cracked_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -57129,6 +58193,10 @@ ] }, "minecraft:crafter": { + "definition": { + "type": "minecraft:crafter", + "properties": {} + }, "properties": { "crafting": [ "true", @@ -57542,6 +58610,10 @@ ] }, "minecraft:crafting_table": { + "definition": { + "type": "minecraft:crafting_table", + "properties": {} + }, "states": [ { "default": true, @@ -57550,6 +58622,11 @@ ] }, "minecraft:creeper_head": { + "definition": { + "type": "minecraft:skull", + "kind": "creeper", + "properties": {} + }, "properties": { "powered": [ "true", @@ -57803,6 +58880,11 @@ ] }, "minecraft:creeper_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "creeper", + "properties": {} + }, "properties": { "facing": [ "north", @@ -57876,6 +58958,12 @@ ] }, "minecraft:crimson_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "crimson", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -58090,6 +59178,11 @@ ] }, "minecraft:crimson_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "crimson", + "properties": {} + }, "properties": { "facing": [ "north", @@ -58759,6 +59852,10 @@ ] }, "minecraft:crimson_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -59106,6 +60203,11 @@ ] }, "minecraft:crimson_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "crimson" + }, "properties": { "facing": [ "north", @@ -59419,6 +60521,12 @@ ] }, "minecraft:crimson_fungus": { + "definition": { + "type": "minecraft:fungus", + "feature": "minecraft:crimson_fungus_planted", + "grows_on": "minecraft:crimson_nylium", + "properties": {} + }, "states": [ { "default": true, @@ -59427,6 +60535,11 @@ ] }, "minecraft:crimson_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "crimson" + }, "properties": { "attached": [ "true", @@ -59972,6 +61085,10 @@ ] }, "minecraft:crimson_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -60002,6 +61119,10 @@ ] }, "minecraft:crimson_nylium": { + "definition": { + "type": "minecraft:nylium", + "properties": {} + }, "states": [ { "default": true, @@ -60010,6 +61131,10 @@ ] }, "minecraft:crimson_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -60018,6 +61143,11 @@ ] }, "minecraft:crimson_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "crimson", + "properties": {} + }, "properties": { "powered": [ "true", @@ -60041,6 +61171,10 @@ ] }, "minecraft:crimson_roots": { + "definition": { + "type": "minecraft:roots", + "properties": {} + }, "states": [ { "default": true, @@ -60049,6 +61183,11 @@ ] }, "minecraft:crimson_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "crimson" + }, "properties": { "rotation": [ "0", @@ -60302,6 +61441,10 @@ ] }, "minecraft:crimson_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -60360,6 +61503,13 @@ ] }, "minecraft:crimson_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:crimson_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -61108,6 +62258,10 @@ ] }, "minecraft:crimson_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -61138,6 +62292,11 @@ ] }, "minecraft:crimson_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "crimson", + "properties": {} + }, "properties": { "facing": [ "north", @@ -61807,6 +62966,11 @@ ] }, "minecraft:crimson_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "crimson" + }, "properties": { "facing": [ "north", @@ -61880,6 +63044,11 @@ ] }, "minecraft:crimson_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "crimson" + }, "properties": { "facing": [ "north", @@ -61953,6 +63122,10 @@ ] }, "minecraft:crying_obsidian": { + "definition": { + "type": "minecraft:crying_obsidian", + "properties": {} + }, "states": [ { "default": true, @@ -61961,6 +63134,11 @@ ] }, "minecraft:cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, "states": [ { "default": true, @@ -61969,6 +63147,11 @@ ] }, "minecraft:cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "unaffected" + }, "properties": { "type": [ "top", @@ -62027,6 +63210,14 @@ ] }, "minecraft:cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:cut_copper" + }, + "properties": {}, + "weathering_state": "unaffected" + }, "properties": { "facing": [ "north", @@ -62775,6 +63966,10 @@ ] }, "minecraft:cut_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -62783,6 +63978,10 @@ ] }, "minecraft:cut_red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -62841,6 +64040,10 @@ ] }, "minecraft:cut_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -62849,6 +64052,10 @@ ] }, "minecraft:cut_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -62907,6 +64114,11 @@ ] }, "minecraft:cyan_banner": { + "definition": { + "type": "minecraft:banner", + "color": "cyan", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -63028,6 +64240,11 @@ ] }, "minecraft:cyan_bed": { + "definition": { + "type": "minecraft:bed", + "color": "cyan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -63177,6 +64394,10 @@ ] }, "minecraft:cyan_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -63326,6 +64547,11 @@ ] }, "minecraft:cyan_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:cyan_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -63349,6 +64575,11 @@ ] }, "minecraft:cyan_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "cyan", + "properties": {} + }, "states": [ { "default": true, @@ -63357,6 +64588,10 @@ ] }, "minecraft:cyan_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -63365,6 +64600,11 @@ ] }, "minecraft:cyan_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:cyan_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -63373,6 +64613,10 @@ ] }, "minecraft:cyan_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -63410,6 +64654,11 @@ ] }, "minecraft:cyan_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "cyan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -63461,6 +64710,11 @@ ] }, "minecraft:cyan_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "cyan", + "properties": {} + }, "states": [ { "default": true, @@ -63469,6 +64723,11 @@ ] }, "minecraft:cyan_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "cyan", + "properties": {} + }, "properties": { "east": [ "true", @@ -63816,6 +65075,10 @@ ] }, "minecraft:cyan_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -63824,6 +65087,11 @@ ] }, "minecraft:cyan_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "cyan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -63861,6 +65129,10 @@ ] }, "minecraft:cyan_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -63869,6 +65141,10 @@ ] }, "minecraft:damaged_anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, "properties": { "facing": [ "north", @@ -63906,6 +65182,16 @@ ] }, "minecraft:dandelion": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, "states": [ { "default": true, @@ -63914,6 +65200,12 @@ ] }, "minecraft:dark_oak_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "dark_oak", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -64128,6 +65420,11 @@ ] }, "minecraft:dark_oak_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "dark_oak", + "properties": {} + }, "properties": { "facing": [ "north", @@ -64797,6 +66094,10 @@ ] }, "minecraft:dark_oak_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -65144,6 +66445,11 @@ ] }, "minecraft:dark_oak_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "dark_oak" + }, "properties": { "facing": [ "north", @@ -65457,6 +66763,11 @@ ] }, "minecraft:dark_oak_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "dark_oak" + }, "properties": { "attached": [ "true", @@ -66002,6 +67313,10 @@ ] }, "minecraft:dark_oak_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, "properties": { "distance": [ "1", @@ -66250,6 +67565,10 @@ ] }, "minecraft:dark_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -66280,6 +67599,10 @@ ] }, "minecraft:dark_oak_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -66288,6 +67611,11 @@ ] }, "minecraft:dark_oak_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "dark_oak", + "properties": {} + }, "properties": { "powered": [ "true", @@ -66311,6 +67639,11 @@ ] }, "minecraft:dark_oak_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "dark_oak" + }, "properties": { "stage": [ "0", @@ -66334,6 +67667,11 @@ ] }, "minecraft:dark_oak_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "dark_oak" + }, "properties": { "rotation": [ "0", @@ -66587,6 +67925,10 @@ ] }, "minecraft:dark_oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -66645,6 +67987,13 @@ ] }, "minecraft:dark_oak_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:dark_oak_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -67393,6 +68742,11 @@ ] }, "minecraft:dark_oak_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "dark_oak", + "properties": {} + }, "properties": { "facing": [ "north", @@ -68062,6 +69416,11 @@ ] }, "minecraft:dark_oak_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "dark_oak" + }, "properties": { "facing": [ "north", @@ -68135,6 +69494,11 @@ ] }, "minecraft:dark_oak_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "dark_oak" + }, "properties": { "facing": [ "north", @@ -68208,6 +69572,10 @@ ] }, "minecraft:dark_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -68238,6 +69606,10 @@ ] }, "minecraft:dark_prismarine": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -68246,6 +69618,10 @@ ] }, "minecraft:dark_prismarine_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -68304,6 +69680,13 @@ ] }, "minecraft:dark_prismarine_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:dark_prismarine" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -69052,6 +70435,10 @@ ] }, "minecraft:daylight_detector": { + "definition": { + "type": "minecraft:daylight_detector", + "properties": {} + }, "properties": { "inverted": [ "true", @@ -69305,6 +70692,10 @@ ] }, "minecraft:dead_brain_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -69328,6 +70719,10 @@ ] }, "minecraft:dead_brain_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -69336,6 +70731,10 @@ ] }, "minecraft:dead_brain_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -69359,6 +70758,10 @@ ] }, "minecraft:dead_brain_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -69432,6 +70835,10 @@ ] }, "minecraft:dead_bubble_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -69455,6 +70862,10 @@ ] }, "minecraft:dead_bubble_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -69463,6 +70874,10 @@ ] }, "minecraft:dead_bubble_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -69486,6 +70901,10 @@ ] }, "minecraft:dead_bubble_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -69559,6 +70978,10 @@ ] }, "minecraft:dead_bush": { + "definition": { + "type": "minecraft:dead_bush", + "properties": {} + }, "states": [ { "default": true, @@ -69567,6 +70990,10 @@ ] }, "minecraft:dead_fire_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -69590,6 +71017,10 @@ ] }, "minecraft:dead_fire_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -69598,6 +71029,10 @@ ] }, "minecraft:dead_fire_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -69621,6 +71056,10 @@ ] }, "minecraft:dead_fire_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -69694,6 +71133,10 @@ ] }, "minecraft:dead_horn_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -69717,6 +71160,10 @@ ] }, "minecraft:dead_horn_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -69725,6 +71172,10 @@ ] }, "minecraft:dead_horn_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -69748,6 +71199,10 @@ ] }, "minecraft:dead_horn_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -69821,6 +71276,10 @@ ] }, "minecraft:dead_tube_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -69844,6 +71303,10 @@ ] }, "minecraft:dead_tube_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -69852,6 +71315,10 @@ ] }, "minecraft:dead_tube_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -69875,6 +71342,10 @@ ] }, "minecraft:dead_tube_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -69948,6 +71419,10 @@ ] }, "minecraft:decorated_pot": { + "definition": { + "type": "minecraft:decorated_pot", + "properties": {} + }, "properties": { "cracked": [ "true", @@ -70097,6 +71572,10 @@ ] }, "minecraft:deepslate": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -70127,6 +71606,10 @@ ] }, "minecraft:deepslate_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -70185,6 +71668,13 @@ ] }, "minecraft:deepslate_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:deepslate_bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -70933,6 +72423,10 @@ ] }, "minecraft:deepslate_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -74532,6 +76026,10 @@ ] }, "minecraft:deepslate_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -74540,6 +76038,15 @@ ] }, "minecraft:deepslate_coal_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "properties": {} + }, "states": [ { "default": true, @@ -74548,6 +76055,11 @@ ] }, "minecraft:deepslate_copper_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, "states": [ { "default": true, @@ -74556,6 +76068,15 @@ ] }, "minecraft:deepslate_diamond_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, "states": [ { "default": true, @@ -74564,6 +76085,15 @@ ] }, "minecraft:deepslate_emerald_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, "states": [ { "default": true, @@ -74572,6 +76102,11 @@ ] }, "minecraft:deepslate_gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, "states": [ { "default": true, @@ -74580,6 +76115,11 @@ ] }, "minecraft:deepslate_iron_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, "states": [ { "default": true, @@ -74588,6 +76128,15 @@ ] }, "minecraft:deepslate_lapis_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, "states": [ { "default": true, @@ -74596,6 +76145,10 @@ ] }, "minecraft:deepslate_redstone_ore": { + "definition": { + "type": "minecraft:redstone_ore", + "properties": {} + }, "properties": { "lit": [ "true", @@ -74619,6 +76172,10 @@ ] }, "minecraft:deepslate_tile_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -74677,6 +76234,13 @@ ] }, "minecraft:deepslate_tile_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:deepslate_tiles" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -75425,6 +76989,10 @@ ] }, "minecraft:deepslate_tile_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -79024,6 +80592,10 @@ ] }, "minecraft:deepslate_tiles": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -79032,6 +80604,10 @@ ] }, "minecraft:detector_rail": { + "definition": { + "type": "minecraft:detector_rail", + "properties": {} + }, "properties": { "powered": [ "true", @@ -79247,6 +80823,10 @@ ] }, "minecraft:diamond_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -79255,6 +80835,15 @@ ] }, "minecraft:diamond_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, "states": [ { "default": true, @@ -79263,6 +80852,10 @@ ] }, "minecraft:diorite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -79271,6 +80864,10 @@ ] }, "minecraft:diorite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -79329,6 +80926,13 @@ ] }, "minecraft:diorite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:diorite" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -80077,6 +81681,10 @@ ] }, "minecraft:diorite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -83676,6 +85284,10 @@ ] }, "minecraft:dirt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -83684,6 +85296,10 @@ ] }, "minecraft:dirt_path": { + "definition": { + "type": "minecraft:dirt_path", + "properties": {} + }, "states": [ { "default": true, @@ -83692,6 +85308,10 @@ ] }, "minecraft:dispenser": { + "definition": { + "type": "minecraft:dispenser", + "properties": {} + }, "properties": { "facing": [ "north", @@ -83795,6 +85415,10 @@ ] }, "minecraft:dragon_egg": { + "definition": { + "type": "minecraft:dragon_egg", + "properties": {} + }, "states": [ { "default": true, @@ -83803,6 +85427,11 @@ ] }, "minecraft:dragon_head": { + "definition": { + "type": "minecraft:skull", + "kind": "dragon", + "properties": {} + }, "properties": { "powered": [ "true", @@ -84056,6 +85685,11 @@ ] }, "minecraft:dragon_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "dragon", + "properties": {} + }, "properties": { "facing": [ "north", @@ -84129,6 +85763,10 @@ ] }, "minecraft:dried_kelp_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -84137,6 +85775,10 @@ ] }, "minecraft:dripstone_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -84145,6 +85787,10 @@ ] }, "minecraft:dropper": { + "definition": { + "type": "minecraft:dropper", + "properties": {} + }, "properties": { "facing": [ "north", @@ -84248,6 +85894,10 @@ ] }, "minecraft:emerald_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -84256,6 +85906,15 @@ ] }, "minecraft:emerald_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, "states": [ { "default": true, @@ -84264,6 +85923,10 @@ ] }, "minecraft:enchanting_table": { + "definition": { + "type": "minecraft:enchantment_table", + "properties": {} + }, "states": [ { "default": true, @@ -84272,6 +85935,10 @@ ] }, "minecraft:end_gateway": { + "definition": { + "type": "minecraft:end_gateway", + "properties": {} + }, "states": [ { "default": true, @@ -84280,6 +85947,10 @@ ] }, "minecraft:end_portal": { + "definition": { + "type": "minecraft:end_portal", + "properties": {} + }, "states": [ { "default": true, @@ -84288,6 +85959,10 @@ ] }, "minecraft:end_portal_frame": { + "definition": { + "type": "minecraft:end_portal_frame", + "properties": {} + }, "properties": { "eye": [ "true", @@ -84361,6 +86036,10 @@ ] }, "minecraft:end_rod": { + "definition": { + "type": "minecraft:end_rod", + "properties": {} + }, "properties": { "facing": [ "north", @@ -84412,6 +86091,10 @@ ] }, "minecraft:end_stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -84420,6 +86103,10 @@ ] }, "minecraft:end_stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -84478,6 +86165,13 @@ ] }, "minecraft:end_stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:end_stone_bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -85226,6 +86920,10 @@ ] }, "minecraft:end_stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -88825,6 +90523,10 @@ ] }, "minecraft:end_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -88833,6 +90535,10 @@ ] }, "minecraft:ender_chest": { + "definition": { + "type": "minecraft:ender_chest", + "properties": {} + }, "properties": { "facing": [ "north", @@ -88906,6 +90612,11 @@ ] }, "minecraft:exposed_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, "states": [ { "default": true, @@ -88914,6 +90625,11 @@ ] }, "minecraft:exposed_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, "states": [ { "default": true, @@ -88922,6 +90638,11 @@ ] }, "minecraft:exposed_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "exposed" + }, "properties": { "lit": [ "true", @@ -88965,6 +90686,12 @@ ] }, "minecraft:exposed_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "exposed" + }, "properties": { "facing": [ "north", @@ -89634,6 +91361,11 @@ ] }, "minecraft:exposed_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "exposed" + }, "properties": { "waterlogged": [ "true", @@ -89657,6 +91389,12 @@ ] }, "minecraft:exposed_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "exposed" + }, "properties": { "facing": [ "north", @@ -90326,6 +92064,11 @@ ] }, "minecraft:exposed_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, "states": [ { "default": true, @@ -90334,6 +92077,11 @@ ] }, "minecraft:exposed_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "exposed" + }, "properties": { "type": [ "top", @@ -90392,6 +92140,14 @@ ] }, "minecraft:exposed_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:exposed_cut_copper" + }, + "properties": {}, + "weathering_state": "exposed" + }, "properties": { "facing": [ "north", @@ -91140,6 +92896,10 @@ ] }, "minecraft:farmland": { + "definition": { + "type": "minecraft:farm", + "properties": {} + }, "properties": { "moisture": [ "0", @@ -91205,6 +92965,10 @@ ] }, "minecraft:fern": { + "definition": { + "type": "minecraft:tall_grass", + "properties": {} + }, "states": [ { "default": true, @@ -91213,6 +92977,10 @@ ] }, "minecraft:fire": { + "definition": { + "type": "minecraft:fire", + "properties": {} + }, "properties": { "age": [ "0", @@ -96890,6 +98658,11 @@ ] }, "minecraft:fire_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_fire_coral", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -96913,6 +98686,11 @@ ] }, "minecraft:fire_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_fire_coral_block", + "properties": {} + }, "states": [ { "default": true, @@ -96921,6 +98699,11 @@ ] }, "minecraft:fire_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_fire_coral_fan", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -96944,6 +98727,11 @@ ] }, "minecraft:fire_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_fire_coral_wall_fan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -97017,6 +98805,10 @@ ] }, "minecraft:fletching_table": { + "definition": { + "type": "minecraft:fletching_table", + "properties": {} + }, "states": [ { "default": true, @@ -97025,6 +98817,11 @@ ] }, "minecraft:flower_pot": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:air", + "properties": {} + }, "states": [ { "default": true, @@ -97033,6 +98830,10 @@ ] }, "minecraft:flowering_azalea": { + "definition": { + "type": "minecraft:azalea", + "properties": {} + }, "states": [ { "default": true, @@ -97041,6 +98842,10 @@ ] }, "minecraft:flowering_azalea_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, "properties": { "distance": [ "1", @@ -97289,6 +99094,10 @@ ] }, "minecraft:frogspawn": { + "definition": { + "type": "minecraft:frogspawn", + "properties": {} + }, "states": [ { "default": true, @@ -97297,6 +99106,10 @@ ] }, "minecraft:frosted_ice": { + "definition": { + "type": "minecraft:frosted_ice", + "properties": {} + }, "properties": { "age": [ "0", @@ -97334,6 +99147,10 @@ ] }, "minecraft:furnace": { + "definition": { + "type": "minecraft:furnace", + "properties": {} + }, "properties": { "facing": [ "north", @@ -97407,6 +99224,10 @@ ] }, "minecraft:gilded_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -97415,6 +99236,10 @@ ] }, "minecraft:glass": { + "definition": { + "type": "minecraft:transparent", + "properties": {} + }, "states": [ { "default": true, @@ -97423,6 +99248,10 @@ ] }, "minecraft:glass_pane": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, "properties": { "east": [ "true", @@ -97770,6 +99599,10 @@ ] }, "minecraft:glow_lichen": { + "definition": { + "type": "minecraft:glow_lichen", + "properties": {} + }, "properties": { "down": [ "true", @@ -99341,6 +101174,10 @@ ] }, "minecraft:glowstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -99349,6 +101186,10 @@ ] }, "minecraft:gold_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -99357,6 +101198,11 @@ ] }, "minecraft:gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, "states": [ { "default": true, @@ -99365,6 +101211,10 @@ ] }, "minecraft:granite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -99373,6 +101223,10 @@ ] }, "minecraft:granite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -99431,6 +101285,13 @@ ] }, "minecraft:granite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:granite" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -100179,6 +102040,10 @@ ] }, "minecraft:granite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -103778,6 +105643,10 @@ ] }, "minecraft:grass_block": { + "definition": { + "type": "minecraft:grass", + "properties": {} + }, "properties": { "snowy": [ "true", @@ -103801,6 +105670,11 @@ ] }, "minecraft:gravel": { + "definition": { + "type": "minecraft:colored_falling", + "falling_dust_color": "#FF807C7B", + "properties": {} + }, "states": [ { "default": true, @@ -103809,6 +105683,11 @@ ] }, "minecraft:gray_banner": { + "definition": { + "type": "minecraft:banner", + "color": "gray", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -103930,6 +105809,11 @@ ] }, "minecraft:gray_bed": { + "definition": { + "type": "minecraft:bed", + "color": "gray", + "properties": {} + }, "properties": { "facing": [ "north", @@ -104079,6 +105963,10 @@ ] }, "minecraft:gray_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -104228,6 +106116,11 @@ ] }, "minecraft:gray_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:gray_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -104251,6 +106144,11 @@ ] }, "minecraft:gray_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "gray", + "properties": {} + }, "states": [ { "default": true, @@ -104259,6 +106157,10 @@ ] }, "minecraft:gray_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -104267,6 +106169,11 @@ ] }, "minecraft:gray_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:gray_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -104275,6 +106182,10 @@ ] }, "minecraft:gray_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -104312,6 +106223,11 @@ ] }, "minecraft:gray_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "gray", + "properties": {} + }, "properties": { "facing": [ "north", @@ -104363,6 +106279,11 @@ ] }, "minecraft:gray_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "gray", + "properties": {} + }, "states": [ { "default": true, @@ -104371,6 +106292,11 @@ ] }, "minecraft:gray_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "gray", + "properties": {} + }, "properties": { "east": [ "true", @@ -104718,6 +106644,10 @@ ] }, "minecraft:gray_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -104726,6 +106656,11 @@ ] }, "minecraft:gray_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "gray", + "properties": {} + }, "properties": { "facing": [ "north", @@ -104763,6 +106698,10 @@ ] }, "minecraft:gray_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -104771,6 +106710,11 @@ ] }, "minecraft:green_banner": { + "definition": { + "type": "minecraft:banner", + "color": "green", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -104892,6 +106836,11 @@ ] }, "minecraft:green_bed": { + "definition": { + "type": "minecraft:bed", + "color": "green", + "properties": {} + }, "properties": { "facing": [ "north", @@ -105041,6 +106990,10 @@ ] }, "minecraft:green_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -105190,6 +107143,11 @@ ] }, "minecraft:green_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:green_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -105213,6 +107171,11 @@ ] }, "minecraft:green_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "green", + "properties": {} + }, "states": [ { "default": true, @@ -105221,6 +107184,10 @@ ] }, "minecraft:green_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -105229,6 +107196,11 @@ ] }, "minecraft:green_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:green_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -105237,6 +107209,10 @@ ] }, "minecraft:green_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -105274,6 +107250,11 @@ ] }, "minecraft:green_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "green", + "properties": {} + }, "properties": { "facing": [ "north", @@ -105325,6 +107306,11 @@ ] }, "minecraft:green_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "green", + "properties": {} + }, "states": [ { "default": true, @@ -105333,6 +107319,11 @@ ] }, "minecraft:green_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "green", + "properties": {} + }, "properties": { "east": [ "true", @@ -105680,6 +107671,10 @@ ] }, "minecraft:green_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -105688,6 +107683,11 @@ ] }, "minecraft:green_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "green", + "properties": {} + }, "properties": { "facing": [ "north", @@ -105725,6 +107725,10 @@ ] }, "minecraft:green_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -105733,6 +107737,10 @@ ] }, "minecraft:grindstone": { + "definition": { + "type": "minecraft:grindstone", + "properties": {} + }, "properties": { "face": [ "floor", @@ -105835,6 +107843,10 @@ ] }, "minecraft:hanging_roots": { + "definition": { + "type": "minecraft:hanging_roots", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -105858,6 +107870,10 @@ ] }, "minecraft:hay_block": { + "definition": { + "type": "minecraft:hay", + "properties": {} + }, "properties": { "axis": [ "x", @@ -105887,7 +107903,40 @@ } ] }, + "minecraft:heavy_core": { + "definition": { + "type": "minecraft:heavy_core", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26682, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26683, + "properties": { + "waterlogged": "false" + } + } + ] + }, "minecraft:heavy_weighted_pressure_plate": { + "definition": { + "type": "minecraft:weighted_pressure_plate", + "block_set_type": "iron", + "max_weight": 150, + "properties": {} + }, "properties": { "power": [ "0", @@ -106009,6 +108058,10 @@ ] }, "minecraft:honey_block": { + "definition": { + "type": "minecraft:honey", + "properties": {} + }, "states": [ { "default": true, @@ -106017,6 +108070,10 @@ ] }, "minecraft:honeycomb_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -106025,6 +108082,10 @@ ] }, "minecraft:hopper": { + "definition": { + "type": "minecraft:hopper", + "properties": {} + }, "properties": { "enabled": [ "true", @@ -106113,6 +108174,11 @@ ] }, "minecraft:horn_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_horn_coral", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -106136,6 +108202,11 @@ ] }, "minecraft:horn_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_horn_coral_block", + "properties": {} + }, "states": [ { "default": true, @@ -106144,6 +108215,11 @@ ] }, "minecraft:horn_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_horn_coral_fan", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -106167,6 +108243,11 @@ ] }, "minecraft:horn_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_horn_coral_wall_fan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -106240,6 +108321,10 @@ ] }, "minecraft:ice": { + "definition": { + "type": "minecraft:ice", + "properties": {} + }, "states": [ { "default": true, @@ -106248,6 +108333,11 @@ ] }, "minecraft:infested_chiseled_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:chiseled_stone_bricks", + "properties": {} + }, "states": [ { "default": true, @@ -106256,6 +108346,11 @@ ] }, "minecraft:infested_cobblestone": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:cobblestone", + "properties": {} + }, "states": [ { "default": true, @@ -106264,6 +108359,11 @@ ] }, "minecraft:infested_cracked_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:cracked_stone_bricks", + "properties": {} + }, "states": [ { "default": true, @@ -106272,6 +108372,11 @@ ] }, "minecraft:infested_deepslate": { + "definition": { + "type": "minecraft:infested_rotated_pillar", + "host": "minecraft:deepslate", + "properties": {} + }, "properties": { "axis": [ "x", @@ -106302,6 +108407,11 @@ ] }, "minecraft:infested_mossy_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:mossy_stone_bricks", + "properties": {} + }, "states": [ { "default": true, @@ -106310,6 +108420,11 @@ ] }, "minecraft:infested_stone": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:stone", + "properties": {} + }, "states": [ { "default": true, @@ -106318,6 +108433,11 @@ ] }, "minecraft:infested_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:stone_bricks", + "properties": {} + }, "states": [ { "default": true, @@ -106326,6 +108446,10 @@ ] }, "minecraft:iron_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, "properties": { "east": [ "true", @@ -106673,6 +108797,10 @@ ] }, "minecraft:iron_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -106681,6 +108809,11 @@ ] }, "minecraft:iron_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "iron", + "properties": {} + }, "properties": { "facing": [ "north", @@ -107350,6 +109483,11 @@ ] }, "minecraft:iron_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, "states": [ { "default": true, @@ -107358,6 +109496,11 @@ ] }, "minecraft:iron_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "iron", + "properties": {} + }, "properties": { "facing": [ "north", @@ -108027,6 +110170,10 @@ ] }, "minecraft:jack_o_lantern": { + "definition": { + "type": "minecraft:jack_o_lantern", + "properties": {} + }, "properties": { "facing": [ "north", @@ -108064,6 +110211,10 @@ ] }, "minecraft:jigsaw": { + "definition": { + "type": "minecraft:jigsaw", + "properties": {} + }, "properties": { "orientation": [ "down_east", @@ -108157,6 +110308,10 @@ ] }, "minecraft:jukebox": { + "definition": { + "type": "minecraft:jukebox", + "properties": {} + }, "properties": { "has_record": [ "true", @@ -108180,6 +110335,12 @@ ] }, "minecraft:jungle_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "jungle", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -108394,6 +110555,11 @@ ] }, "minecraft:jungle_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "jungle", + "properties": {} + }, "properties": { "facing": [ "north", @@ -109063,6 +111229,10 @@ ] }, "minecraft:jungle_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -109410,6 +111580,11 @@ ] }, "minecraft:jungle_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "jungle" + }, "properties": { "facing": [ "north", @@ -109723,6 +111898,11 @@ ] }, "minecraft:jungle_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "jungle" + }, "properties": { "attached": [ "true", @@ -110268,6 +112448,10 @@ ] }, "minecraft:jungle_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, "properties": { "distance": [ "1", @@ -110516,6 +112700,10 @@ ] }, "minecraft:jungle_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -110546,6 +112734,10 @@ ] }, "minecraft:jungle_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -110554,6 +112746,11 @@ ] }, "minecraft:jungle_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "jungle", + "properties": {} + }, "properties": { "powered": [ "true", @@ -110577,6 +112774,11 @@ ] }, "minecraft:jungle_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "jungle" + }, "properties": { "stage": [ "0", @@ -110600,6 +112802,11 @@ ] }, "minecraft:jungle_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "jungle" + }, "properties": { "rotation": [ "0", @@ -110853,6 +113060,10 @@ ] }, "minecraft:jungle_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -110911,6 +113122,13 @@ ] }, "minecraft:jungle_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:jungle_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -111659,6 +113877,11 @@ ] }, "minecraft:jungle_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "jungle", + "properties": {} + }, "properties": { "facing": [ "north", @@ -112328,6 +114551,11 @@ ] }, "minecraft:jungle_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "jungle" + }, "properties": { "facing": [ "north", @@ -112401,6 +114629,11 @@ ] }, "minecraft:jungle_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "jungle" + }, "properties": { "facing": [ "north", @@ -112474,6 +114707,10 @@ ] }, "minecraft:jungle_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -112504,6 +114741,10 @@ ] }, "minecraft:kelp": { + "definition": { + "type": "minecraft:kelp", + "properties": {} + }, "properties": { "age": [ "0", @@ -112695,6 +114936,10 @@ ] }, "minecraft:kelp_plant": { + "definition": { + "type": "minecraft:kelp_plant", + "properties": {} + }, "states": [ { "default": true, @@ -112703,6 +114948,10 @@ ] }, "minecraft:ladder": { + "definition": { + "type": "minecraft:ladder", + "properties": {} + }, "properties": { "facing": [ "north", @@ -112776,6 +115025,10 @@ ] }, "minecraft:lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, "properties": { "hanging": [ "true", @@ -112819,6 +115072,10 @@ ] }, "minecraft:lapis_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -112827,6 +115084,15 @@ ] }, "minecraft:lapis_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, "states": [ { "default": true, @@ -112835,6 +115101,12 @@ ] }, "minecraft:large_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "aabb_offset": 3.0, + "height": 5.0, + "properties": {} + }, "properties": { "facing": [ "north", @@ -112938,6 +115210,10 @@ ] }, "minecraft:large_fern": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, "properties": { "half": [ "upper", @@ -112961,6 +115237,11 @@ ] }, "minecraft:lava": { + "definition": { + "type": "minecraft:liquid", + "fluid": "minecraft:lava", + "properties": {} + }, "properties": { "level": [ "0", @@ -113082,6 +115363,10 @@ ] }, "minecraft:lava_cauldron": { + "definition": { + "type": "minecraft:lava_cauldron", + "properties": {} + }, "states": [ { "default": true, @@ -113090,6 +115375,10 @@ ] }, "minecraft:lectern": { + "definition": { + "type": "minecraft:lectern", + "properties": {} + }, "properties": { "facing": [ "north", @@ -113239,6 +115528,10 @@ ] }, "minecraft:lever": { + "definition": { + "type": "minecraft:lever", + "properties": {} + }, "properties": { "face": [ "floor", @@ -113453,6 +115746,10 @@ ] }, "minecraft:light": { + "definition": { + "type": "minecraft:light", + "properties": {} + }, "properties": { "level": [ "0", @@ -113706,6 +116003,11 @@ ] }, "minecraft:light_blue_banner": { + "definition": { + "type": "minecraft:banner", + "color": "light_blue", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -113827,6 +116129,11 @@ ] }, "minecraft:light_blue_bed": { + "definition": { + "type": "minecraft:bed", + "color": "light_blue", + "properties": {} + }, "properties": { "facing": [ "north", @@ -113976,6 +116283,10 @@ ] }, "minecraft:light_blue_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -114125,6 +116436,11 @@ ] }, "minecraft:light_blue_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:light_blue_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -114148,6 +116464,11 @@ ] }, "minecraft:light_blue_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "light_blue", + "properties": {} + }, "states": [ { "default": true, @@ -114156,6 +116477,10 @@ ] }, "minecraft:light_blue_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -114164,6 +116489,11 @@ ] }, "minecraft:light_blue_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:light_blue_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -114172,6 +116502,10 @@ ] }, "minecraft:light_blue_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -114209,6 +116543,11 @@ ] }, "minecraft:light_blue_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "light_blue", + "properties": {} + }, "properties": { "facing": [ "north", @@ -114260,6 +116599,11 @@ ] }, "minecraft:light_blue_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "light_blue", + "properties": {} + }, "states": [ { "default": true, @@ -114268,6 +116612,11 @@ ] }, "minecraft:light_blue_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "light_blue", + "properties": {} + }, "properties": { "east": [ "true", @@ -114615,6 +116964,10 @@ ] }, "minecraft:light_blue_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -114623,6 +116976,11 @@ ] }, "minecraft:light_blue_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "light_blue", + "properties": {} + }, "properties": { "facing": [ "north", @@ -114660,6 +117018,10 @@ ] }, "minecraft:light_blue_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -114668,6 +117030,11 @@ ] }, "minecraft:light_gray_banner": { + "definition": { + "type": "minecraft:banner", + "color": "light_gray", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -114789,6 +117156,11 @@ ] }, "minecraft:light_gray_bed": { + "definition": { + "type": "minecraft:bed", + "color": "light_gray", + "properties": {} + }, "properties": { "facing": [ "north", @@ -114938,6 +117310,10 @@ ] }, "minecraft:light_gray_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -115087,6 +117463,11 @@ ] }, "minecraft:light_gray_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:light_gray_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -115110,6 +117491,11 @@ ] }, "minecraft:light_gray_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "light_gray", + "properties": {} + }, "states": [ { "default": true, @@ -115118,6 +117504,10 @@ ] }, "minecraft:light_gray_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -115126,6 +117516,11 @@ ] }, "minecraft:light_gray_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:light_gray_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -115134,6 +117529,10 @@ ] }, "minecraft:light_gray_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -115171,6 +117570,11 @@ ] }, "minecraft:light_gray_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "light_gray", + "properties": {} + }, "properties": { "facing": [ "north", @@ -115222,6 +117626,11 @@ ] }, "minecraft:light_gray_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "light_gray", + "properties": {} + }, "states": [ { "default": true, @@ -115230,6 +117639,11 @@ ] }, "minecraft:light_gray_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "light_gray", + "properties": {} + }, "properties": { "east": [ "true", @@ -115577,6 +117991,10 @@ ] }, "minecraft:light_gray_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -115585,6 +118003,11 @@ ] }, "minecraft:light_gray_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "light_gray", + "properties": {} + }, "properties": { "facing": [ "north", @@ -115622,6 +118045,10 @@ ] }, "minecraft:light_gray_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -115630,6 +118057,12 @@ ] }, "minecraft:light_weighted_pressure_plate": { + "definition": { + "type": "minecraft:weighted_pressure_plate", + "block_set_type": "gold", + "max_weight": 15, + "properties": {} + }, "properties": { "power": [ "0", @@ -115751,6 +118184,10 @@ ] }, "minecraft:lightning_rod": { + "definition": { + "type": "minecraft:lightning_rod", + "properties": {} + }, "properties": { "facing": [ "north", @@ -115966,6 +118403,10 @@ ] }, "minecraft:lilac": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, "properties": { "half": [ "upper", @@ -115989,6 +118430,16 @@ ] }, "minecraft:lily_of_the_valley": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 240, + "id": "minecraft:poison" + } + ] + }, "states": [ { "default": true, @@ -115997,6 +118448,10 @@ ] }, "minecraft:lily_pad": { + "definition": { + "type": "minecraft:waterlily", + "properties": {} + }, "states": [ { "default": true, @@ -116005,6 +118460,11 @@ ] }, "minecraft:lime_banner": { + "definition": { + "type": "minecraft:banner", + "color": "lime", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -116126,6 +118586,11 @@ ] }, "minecraft:lime_bed": { + "definition": { + "type": "minecraft:bed", + "color": "lime", + "properties": {} + }, "properties": { "facing": [ "north", @@ -116275,6 +118740,10 @@ ] }, "minecraft:lime_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -116424,6 +118893,11 @@ ] }, "minecraft:lime_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:lime_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -116447,6 +118921,11 @@ ] }, "minecraft:lime_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "lime", + "properties": {} + }, "states": [ { "default": true, @@ -116455,6 +118934,10 @@ ] }, "minecraft:lime_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -116463,6 +118946,11 @@ ] }, "minecraft:lime_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:lime_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -116471,6 +118959,10 @@ ] }, "minecraft:lime_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -116508,6 +119000,11 @@ ] }, "minecraft:lime_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "lime", + "properties": {} + }, "properties": { "facing": [ "north", @@ -116559,6 +119056,11 @@ ] }, "minecraft:lime_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "lime", + "properties": {} + }, "states": [ { "default": true, @@ -116567,6 +119069,11 @@ ] }, "minecraft:lime_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "lime", + "properties": {} + }, "properties": { "east": [ "true", @@ -116914,6 +119421,10 @@ ] }, "minecraft:lime_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -116922,6 +119433,11 @@ ] }, "minecraft:lime_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "lime", + "properties": {} + }, "properties": { "facing": [ "north", @@ -116959,6 +119475,10 @@ ] }, "minecraft:lime_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -116967,6 +119487,10 @@ ] }, "minecraft:lodestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -116975,6 +119499,10 @@ ] }, "minecraft:loom": { + "definition": { + "type": "minecraft:loom", + "properties": {} + }, "properties": { "facing": [ "north", @@ -117012,6 +119540,11 @@ ] }, "minecraft:magenta_banner": { + "definition": { + "type": "minecraft:banner", + "color": "magenta", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -117133,6 +119666,11 @@ ] }, "minecraft:magenta_bed": { + "definition": { + "type": "minecraft:bed", + "color": "magenta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -117282,6 +119820,10 @@ ] }, "minecraft:magenta_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -117431,6 +119973,11 @@ ] }, "minecraft:magenta_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:magenta_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -117454,6 +120001,11 @@ ] }, "minecraft:magenta_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "magenta", + "properties": {} + }, "states": [ { "default": true, @@ -117462,6 +120014,10 @@ ] }, "minecraft:magenta_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -117470,6 +120026,11 @@ ] }, "minecraft:magenta_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:magenta_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -117478,6 +120039,10 @@ ] }, "minecraft:magenta_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -117515,6 +120080,11 @@ ] }, "minecraft:magenta_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "magenta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -117566,6 +120136,11 @@ ] }, "minecraft:magenta_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "magenta", + "properties": {} + }, "states": [ { "default": true, @@ -117574,6 +120149,11 @@ ] }, "minecraft:magenta_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "magenta", + "properties": {} + }, "properties": { "east": [ "true", @@ -117921,6 +120501,10 @@ ] }, "minecraft:magenta_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -117929,6 +120513,11 @@ ] }, "minecraft:magenta_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "magenta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -117966,6 +120555,10 @@ ] }, "minecraft:magenta_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -117974,6 +120567,10 @@ ] }, "minecraft:magma_block": { + "definition": { + "type": "minecraft:magma", + "properties": {} + }, "states": [ { "default": true, @@ -117982,6 +120579,12 @@ ] }, "minecraft:mangrove_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "mangrove", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -118196,6 +120799,11 @@ ] }, "minecraft:mangrove_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "mangrove", + "properties": {} + }, "properties": { "facing": [ "north", @@ -118865,6 +121473,10 @@ ] }, "minecraft:mangrove_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -119212,6 +121824,11 @@ ] }, "minecraft:mangrove_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "mangrove" + }, "properties": { "facing": [ "north", @@ -119525,6 +122142,11 @@ ] }, "minecraft:mangrove_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "mangrove" + }, "properties": { "attached": [ "true", @@ -120070,6 +122692,10 @@ ] }, "minecraft:mangrove_leaves": { + "definition": { + "type": "minecraft:mangrove_leaves", + "properties": {} + }, "properties": { "distance": [ "1", @@ -120318,6 +122944,10 @@ ] }, "minecraft:mangrove_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -120348,6 +122978,10 @@ ] }, "minecraft:mangrove_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -120356,6 +122990,11 @@ ] }, "minecraft:mangrove_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "mangrove", + "properties": {} + }, "properties": { "powered": [ "true", @@ -120379,6 +123018,11 @@ ] }, "minecraft:mangrove_propagule": { + "definition": { + "type": "minecraft:mangrove_propagule", + "properties": {}, + "tree": "mangrove" + }, "properties": { "age": [ "0", @@ -120765,6 +123409,10 @@ ] }, "minecraft:mangrove_roots": { + "definition": { + "type": "minecraft:mangrove_roots", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -120788,6 +123436,11 @@ ] }, "minecraft:mangrove_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "mangrove" + }, "properties": { "rotation": [ "0", @@ -121041,6 +123694,10 @@ ] }, "minecraft:mangrove_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -121099,6 +123756,13 @@ ] }, "minecraft:mangrove_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mangrove_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -121847,6 +124511,11 @@ ] }, "minecraft:mangrove_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "mangrove", + "properties": {} + }, "properties": { "facing": [ "north", @@ -122516,6 +125185,11 @@ ] }, "minecraft:mangrove_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "mangrove" + }, "properties": { "facing": [ "north", @@ -122589,6 +125263,11 @@ ] }, "minecraft:mangrove_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "mangrove" + }, "properties": { "facing": [ "north", @@ -122662,6 +125341,10 @@ ] }, "minecraft:mangrove_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -122692,6 +125375,12 @@ ] }, "minecraft:medium_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "aabb_offset": 3.0, + "height": 4.0, + "properties": {} + }, "properties": { "facing": [ "north", @@ -122795,6 +125484,10 @@ ] }, "minecraft:melon": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -122803,6 +125496,13 @@ ] }, "minecraft:melon_stem": { + "definition": { + "type": "minecraft:stem", + "attached_stem": "minecraft:attached_melon_stem", + "fruit": "minecraft:melon", + "properties": {}, + "seed": "minecraft:melon_seeds" + }, "properties": { "age": [ "0", @@ -122868,6 +125568,10 @@ ] }, "minecraft:moss_block": { + "definition": { + "type": "minecraft:moss", + "properties": {} + }, "states": [ { "default": true, @@ -122876,6 +125580,10 @@ ] }, "minecraft:moss_carpet": { + "definition": { + "type": "minecraft:carpet", + "properties": {} + }, "states": [ { "default": true, @@ -122884,6 +125592,10 @@ ] }, "minecraft:mossy_cobblestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -122892,6 +125604,10 @@ ] }, "minecraft:mossy_cobblestone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -122950,6 +125666,13 @@ ] }, "minecraft:mossy_cobblestone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mossy_cobblestone" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -123698,6 +126421,10 @@ ] }, "minecraft:mossy_cobblestone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -127297,6 +130024,10 @@ ] }, "minecraft:mossy_stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -127355,6 +130086,13 @@ ] }, "minecraft:mossy_stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mossy_stone_bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -128103,6 +130841,10 @@ ] }, "minecraft:mossy_stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -131702,6 +134444,10 @@ ] }, "minecraft:mossy_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -131710,6 +134456,10 @@ ] }, "minecraft:moving_piston": { + "definition": { + "type": "minecraft:moving_piston", + "properties": {} + }, "properties": { "type": [ "normal", @@ -131813,6 +134563,10 @@ ] }, "minecraft:mud": { + "definition": { + "type": "minecraft:mud", + "properties": {} + }, "states": [ { "default": true, @@ -131821,6 +134575,10 @@ ] }, "minecraft:mud_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -131879,6 +134637,13 @@ ] }, "minecraft:mud_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mud_bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -132627,6 +135392,10 @@ ] }, "minecraft:mud_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -136226,6 +138995,10 @@ ] }, "minecraft:mud_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -136234,6 +139007,10 @@ ] }, "minecraft:muddy_mangrove_roots": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -136264,6 +139041,10 @@ ] }, "minecraft:mushroom_stem": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, "properties": { "down": [ "true", @@ -136999,6 +139780,10 @@ ] }, "minecraft:mycelium": { + "definition": { + "type": "minecraft:mycelium", + "properties": {} + }, "properties": { "snowy": [ "true", @@ -137022,6 +139807,10 @@ ] }, "minecraft:nether_brick_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -137369,6 +140158,10 @@ ] }, "minecraft:nether_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -137427,6 +140220,13 @@ ] }, "minecraft:nether_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:nether_bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -138175,6 +140975,10 @@ ] }, "minecraft:nether_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -141774,6 +144578,10 @@ ] }, "minecraft:nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -141782,6 +144590,15 @@ ] }, "minecraft:nether_gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": 0 + }, + "properties": {} + }, "states": [ { "default": true, @@ -141790,6 +144607,10 @@ ] }, "minecraft:nether_portal": { + "definition": { + "type": "minecraft:nether_portal", + "properties": {} + }, "properties": { "axis": [ "x", @@ -141813,6 +144634,15 @@ ] }, "minecraft:nether_quartz_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, "states": [ { "default": true, @@ -141821,6 +144651,10 @@ ] }, "minecraft:nether_sprouts": { + "definition": { + "type": "minecraft:nether_sprouts", + "properties": {} + }, "states": [ { "default": true, @@ -141829,6 +144663,10 @@ ] }, "minecraft:nether_wart": { + "definition": { + "type": "minecraft:nether_wart", + "properties": {} + }, "properties": { "age": [ "0", @@ -141866,6 +144704,10 @@ ] }, "minecraft:nether_wart_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -141874,6 +144716,10 @@ ] }, "minecraft:netherite_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -141882,6 +144728,10 @@ ] }, "minecraft:netherrack": { + "definition": { + "type": "minecraft:netherrack", + "properties": {} + }, "states": [ { "default": true, @@ -141890,6 +144740,10 @@ ] }, "minecraft:note_block": { + "definition": { + "type": "minecraft:note", + "properties": {} + }, "properties": { "instrument": [ "harp", @@ -151153,6 +154007,12 @@ ] }, "minecraft:oak_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "oak", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -151367,6 +154227,11 @@ ] }, "minecraft:oak_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "oak", + "properties": {} + }, "properties": { "facing": [ "north", @@ -152036,6 +154901,10 @@ ] }, "minecraft:oak_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -152383,6 +155252,11 @@ ] }, "minecraft:oak_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "oak" + }, "properties": { "facing": [ "north", @@ -152696,6 +155570,11 @@ ] }, "minecraft:oak_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "oak" + }, "properties": { "attached": [ "true", @@ -153241,6 +156120,10 @@ ] }, "minecraft:oak_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, "properties": { "distance": [ "1", @@ -153489,6 +156372,10 @@ ] }, "minecraft:oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -153519,6 +156406,10 @@ ] }, "minecraft:oak_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -153527,6 +156418,11 @@ ] }, "minecraft:oak_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "oak", + "properties": {} + }, "properties": { "powered": [ "true", @@ -153550,6 +156446,11 @@ ] }, "minecraft:oak_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "oak" + }, "properties": { "stage": [ "0", @@ -153573,6 +156474,11 @@ ] }, "minecraft:oak_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "oak" + }, "properties": { "rotation": [ "0", @@ -153826,6 +156732,10 @@ ] }, "minecraft:oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -153884,6 +156794,13 @@ ] }, "minecraft:oak_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:oak_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -154632,6 +157549,11 @@ ] }, "minecraft:oak_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "oak", + "properties": {} + }, "properties": { "facing": [ "north", @@ -155301,6 +158223,11 @@ ] }, "minecraft:oak_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "oak" + }, "properties": { "facing": [ "north", @@ -155374,6 +158301,11 @@ ] }, "minecraft:oak_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "oak" + }, "properties": { "facing": [ "north", @@ -155447,6 +158379,10 @@ ] }, "minecraft:oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -155477,6 +158413,10 @@ ] }, "minecraft:observer": { + "definition": { + "type": "minecraft:observer", + "properties": {} + }, "properties": { "facing": [ "north", @@ -155580,6 +158520,10 @@ ] }, "minecraft:obsidian": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -155588,6 +158532,10 @@ ] }, "minecraft:ochre_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -155618,6 +158566,11 @@ ] }, "minecraft:orange_banner": { + "definition": { + "type": "minecraft:banner", + "color": "orange", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -155739,6 +158692,11 @@ ] }, "minecraft:orange_bed": { + "definition": { + "type": "minecraft:bed", + "color": "orange", + "properties": {} + }, "properties": { "facing": [ "north", @@ -155888,6 +158846,10 @@ ] }, "minecraft:orange_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -156037,6 +158999,11 @@ ] }, "minecraft:orange_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:orange_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -156060,6 +159027,11 @@ ] }, "minecraft:orange_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "orange", + "properties": {} + }, "states": [ { "default": true, @@ -156068,6 +159040,10 @@ ] }, "minecraft:orange_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -156076,6 +159052,11 @@ ] }, "minecraft:orange_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:orange_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -156084,6 +159065,10 @@ ] }, "minecraft:orange_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -156121,6 +159106,11 @@ ] }, "minecraft:orange_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "orange", + "properties": {} + }, "properties": { "facing": [ "north", @@ -156172,6 +159162,11 @@ ] }, "minecraft:orange_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "orange", + "properties": {} + }, "states": [ { "default": true, @@ -156180,6 +159175,11 @@ ] }, "minecraft:orange_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "orange", + "properties": {} + }, "properties": { "east": [ "true", @@ -156527,6 +159527,10 @@ ] }, "minecraft:orange_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -156535,6 +159539,16 @@ ] }, "minecraft:orange_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 180, + "id": "minecraft:weakness" + } + ] + }, "states": [ { "default": true, @@ -156543,6 +159557,11 @@ ] }, "minecraft:orange_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "orange", + "properties": {} + }, "properties": { "facing": [ "north", @@ -156580,6 +159599,10 @@ ] }, "minecraft:orange_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -156588,6 +159611,15 @@ ] }, "minecraft:oxeye_daisy": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "id": "minecraft:regeneration" + } + ] + }, "states": [ { "default": true, @@ -156596,6 +159628,11 @@ ] }, "minecraft:oxidized_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, "states": [ { "default": true, @@ -156604,6 +159641,11 @@ ] }, "minecraft:oxidized_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, "states": [ { "default": true, @@ -156612,6 +159654,11 @@ ] }, "minecraft:oxidized_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "oxidized" + }, "properties": { "lit": [ "true", @@ -156655,6 +159702,12 @@ ] }, "minecraft:oxidized_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "oxidized" + }, "properties": { "facing": [ "north", @@ -157324,6 +160377,11 @@ ] }, "minecraft:oxidized_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "oxidized" + }, "properties": { "waterlogged": [ "true", @@ -157347,6 +160405,12 @@ ] }, "minecraft:oxidized_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "oxidized" + }, "properties": { "facing": [ "north", @@ -158016,6 +161080,11 @@ ] }, "minecraft:oxidized_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, "states": [ { "default": true, @@ -158024,6 +161093,11 @@ ] }, "minecraft:oxidized_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "oxidized" + }, "properties": { "type": [ "top", @@ -158082,6 +161156,14 @@ ] }, "minecraft:oxidized_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:oxidized_cut_copper" + }, + "properties": {}, + "weathering_state": "oxidized" + }, "properties": { "facing": [ "north", @@ -158830,6 +161912,10 @@ ] }, "minecraft:packed_ice": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -158838,6 +161924,10 @@ ] }, "minecraft:packed_mud": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -158846,6 +161936,10 @@ ] }, "minecraft:pearlescent_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -158876,6 +161970,10 @@ ] }, "minecraft:peony": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, "properties": { "half": [ "upper", @@ -158899,6 +161997,10 @@ ] }, "minecraft:petrified_oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -158957,6 +162059,11 @@ ] }, "minecraft:piglin_head": { + "definition": { + "type": "minecraft:skull", + "kind": "piglin", + "properties": {} + }, "properties": { "powered": [ "true", @@ -159210,6 +162317,10 @@ ] }, "minecraft:piglin_wall_head": { + "definition": { + "type": "minecraft:piglinwallskull", + "properties": {} + }, "properties": { "facing": [ "north", @@ -159283,6 +162394,11 @@ ] }, "minecraft:pink_banner": { + "definition": { + "type": "minecraft:banner", + "color": "pink", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -159404,6 +162520,11 @@ ] }, "minecraft:pink_bed": { + "definition": { + "type": "minecraft:bed", + "color": "pink", + "properties": {} + }, "properties": { "facing": [ "north", @@ -159553,6 +162674,10 @@ ] }, "minecraft:pink_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -159702,6 +162827,11 @@ ] }, "minecraft:pink_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:pink_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -159725,6 +162855,11 @@ ] }, "minecraft:pink_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "pink", + "properties": {} + }, "states": [ { "default": true, @@ -159733,6 +162868,10 @@ ] }, "minecraft:pink_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -159741,6 +162880,11 @@ ] }, "minecraft:pink_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:pink_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -159749,6 +162893,10 @@ ] }, "minecraft:pink_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -159786,6 +162934,10 @@ ] }, "minecraft:pink_petals": { + "definition": { + "type": "minecraft:pink_petals", + "properties": {} + }, "properties": { "facing": [ "north", @@ -159917,6 +163069,11 @@ ] }, "minecraft:pink_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "pink", + "properties": {} + }, "properties": { "facing": [ "north", @@ -159968,6 +163125,11 @@ ] }, "minecraft:pink_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "pink", + "properties": {} + }, "states": [ { "default": true, @@ -159976,6 +163138,11 @@ ] }, "minecraft:pink_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "pink", + "properties": {} + }, "properties": { "east": [ "true", @@ -160323,6 +163490,10 @@ ] }, "minecraft:pink_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -160331,6 +163502,16 @@ ] }, "minecraft:pink_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 180, + "id": "minecraft:weakness" + } + ] + }, "states": [ { "default": true, @@ -160339,6 +163520,11 @@ ] }, "minecraft:pink_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "pink", + "properties": {} + }, "properties": { "facing": [ "north", @@ -160376,6 +163562,10 @@ ] }, "minecraft:pink_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -160384,6 +163574,11 @@ ] }, "minecraft:piston": { + "definition": { + "type": "minecraft:piston_base", + "properties": {}, + "sticky": false + }, "properties": { "extended": [ "true", @@ -160487,6 +163682,10 @@ ] }, "minecraft:piston_head": { + "definition": { + "type": "minecraft:piston_head", + "properties": {} + }, "properties": { "type": [ "normal", @@ -160702,6 +163901,10 @@ ] }, "minecraft:pitcher_crop": { + "definition": { + "type": "minecraft:pitcher_crop", + "properties": {} + }, "properties": { "age": [ "0", @@ -160790,6 +163993,10 @@ ] }, "minecraft:pitcher_plant": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, "properties": { "half": [ "upper", @@ -160813,6 +164020,10 @@ ] }, "minecraft:player_head": { + "definition": { + "type": "minecraft:player_head", + "properties": {} + }, "properties": { "powered": [ "true", @@ -161066,6 +164277,10 @@ ] }, "minecraft:player_wall_head": { + "definition": { + "type": "minecraft:player_wall_head", + "properties": {} + }, "properties": { "facing": [ "north", @@ -161139,6 +164354,10 @@ ] }, "minecraft:podzol": { + "definition": { + "type": "minecraft:snowy_dirt", + "properties": {} + }, "properties": { "snowy": [ "true", @@ -161162,6 +164381,10 @@ ] }, "minecraft:pointed_dripstone": { + "definition": { + "type": "minecraft:pointed_dripstone", + "properties": {} + }, "properties": { "thickness": [ "tip_merge", @@ -161344,6 +164567,10 @@ ] }, "minecraft:polished_andesite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -161352,6 +164579,10 @@ ] }, "minecraft:polished_andesite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -161410,6 +164641,13 @@ ] }, "minecraft:polished_andesite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_andesite" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -162158,6 +165396,10 @@ ] }, "minecraft:polished_basalt": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -162188,6 +165430,10 @@ ] }, "minecraft:polished_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -162196,6 +165442,10 @@ ] }, "minecraft:polished_blackstone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -162254,6 +165504,13 @@ ] }, "minecraft:polished_blackstone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_blackstone_bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -163002,6 +166259,10 @@ ] }, "minecraft:polished_blackstone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -166601,6 +169862,10 @@ ] }, "minecraft:polished_blackstone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -166609,6 +169874,12 @@ ] }, "minecraft:polished_blackstone_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "stone", + "properties": {}, + "ticks_to_stay_pressed": 20 + }, "properties": { "face": [ "floor", @@ -166823,6 +170094,11 @@ ] }, "minecraft:polished_blackstone_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "polished_blackstone", + "properties": {} + }, "properties": { "powered": [ "true", @@ -166846,6 +170122,10 @@ ] }, "minecraft:polished_blackstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -166904,6 +170184,13 @@ ] }, "minecraft:polished_blackstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_blackstone" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -167652,6 +170939,10 @@ ] }, "minecraft:polished_blackstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -171251,6 +174542,10 @@ ] }, "minecraft:polished_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -171259,6 +174554,10 @@ ] }, "minecraft:polished_deepslate_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -171317,6 +174616,13 @@ ] }, "minecraft:polished_deepslate_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_deepslate" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -172065,6 +175371,10 @@ ] }, "minecraft:polished_deepslate_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -175664,6 +178974,10 @@ ] }, "minecraft:polished_diorite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -175672,6 +178986,10 @@ ] }, "minecraft:polished_diorite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -175730,6 +179048,13 @@ ] }, "minecraft:polished_diorite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_diorite" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -176478,6 +179803,10 @@ ] }, "minecraft:polished_granite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -176486,6 +179815,10 @@ ] }, "minecraft:polished_granite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -176544,6 +179877,13 @@ ] }, "minecraft:polished_granite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_granite" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -177292,6 +180632,10 @@ ] }, "minecraft:polished_tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -177300,6 +180644,10 @@ ] }, "minecraft:polished_tuff_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -177358,6 +180706,13 @@ ] }, "minecraft:polished_tuff_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_tuff" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -178106,6 +181461,10 @@ ] }, "minecraft:polished_tuff_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -181705,6 +185064,16 @@ ] }, "minecraft:poppy": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, "states": [ { "default": true, @@ -181713,6 +185082,10 @@ ] }, "minecraft:potatoes": { + "definition": { + "type": "minecraft:potato", + "properties": {} + }, "properties": { "age": [ "0", @@ -181778,6 +185151,11 @@ ] }, "minecraft:potted_acacia_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:acacia_sapling", + "properties": {} + }, "states": [ { "default": true, @@ -181786,6 +185164,11 @@ ] }, "minecraft:potted_allium": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:allium", + "properties": {} + }, "states": [ { "default": true, @@ -181794,6 +185177,11 @@ ] }, "minecraft:potted_azalea_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:azalea", + "properties": {} + }, "states": [ { "default": true, @@ -181802,6 +185190,11 @@ ] }, "minecraft:potted_azure_bluet": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:azure_bluet", + "properties": {} + }, "states": [ { "default": true, @@ -181810,6 +185203,11 @@ ] }, "minecraft:potted_bamboo": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:bamboo", + "properties": {} + }, "states": [ { "default": true, @@ -181818,6 +185216,11 @@ ] }, "minecraft:potted_birch_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:birch_sapling", + "properties": {} + }, "states": [ { "default": true, @@ -181826,6 +185229,11 @@ ] }, "minecraft:potted_blue_orchid": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:blue_orchid", + "properties": {} + }, "states": [ { "default": true, @@ -181834,6 +185242,11 @@ ] }, "minecraft:potted_brown_mushroom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:brown_mushroom", + "properties": {} + }, "states": [ { "default": true, @@ -181842,6 +185255,11 @@ ] }, "minecraft:potted_cactus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cactus", + "properties": {} + }, "states": [ { "default": true, @@ -181850,6 +185268,11 @@ ] }, "minecraft:potted_cherry_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cherry_sapling", + "properties": {} + }, "states": [ { "default": true, @@ -181858,6 +185281,11 @@ ] }, "minecraft:potted_cornflower": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cornflower", + "properties": {} + }, "states": [ { "default": true, @@ -181866,6 +185294,11 @@ ] }, "minecraft:potted_crimson_fungus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:crimson_fungus", + "properties": {} + }, "states": [ { "default": true, @@ -181874,6 +185307,11 @@ ] }, "minecraft:potted_crimson_roots": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:crimson_roots", + "properties": {} + }, "states": [ { "default": true, @@ -181882,6 +185320,11 @@ ] }, "minecraft:potted_dandelion": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dandelion", + "properties": {} + }, "states": [ { "default": true, @@ -181890,6 +185333,11 @@ ] }, "minecraft:potted_dark_oak_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dark_oak_sapling", + "properties": {} + }, "states": [ { "default": true, @@ -181898,6 +185346,11 @@ ] }, "minecraft:potted_dead_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dead_bush", + "properties": {} + }, "states": [ { "default": true, @@ -181906,6 +185359,11 @@ ] }, "minecraft:potted_fern": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:fern", + "properties": {} + }, "states": [ { "default": true, @@ -181914,6 +185372,11 @@ ] }, "minecraft:potted_flowering_azalea_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:flowering_azalea", + "properties": {} + }, "states": [ { "default": true, @@ -181922,6 +185385,11 @@ ] }, "minecraft:potted_jungle_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:jungle_sapling", + "properties": {} + }, "states": [ { "default": true, @@ -181930,6 +185398,11 @@ ] }, "minecraft:potted_lily_of_the_valley": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:lily_of_the_valley", + "properties": {} + }, "states": [ { "default": true, @@ -181938,6 +185411,11 @@ ] }, "minecraft:potted_mangrove_propagule": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:mangrove_propagule", + "properties": {} + }, "states": [ { "default": true, @@ -181946,6 +185424,11 @@ ] }, "minecraft:potted_oak_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:oak_sapling", + "properties": {} + }, "states": [ { "default": true, @@ -181954,6 +185437,11 @@ ] }, "minecraft:potted_orange_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:orange_tulip", + "properties": {} + }, "states": [ { "default": true, @@ -181962,6 +185450,11 @@ ] }, "minecraft:potted_oxeye_daisy": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:oxeye_daisy", + "properties": {} + }, "states": [ { "default": true, @@ -181970,6 +185463,11 @@ ] }, "minecraft:potted_pink_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:pink_tulip", + "properties": {} + }, "states": [ { "default": true, @@ -181978,6 +185476,11 @@ ] }, "minecraft:potted_poppy": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:poppy", + "properties": {} + }, "states": [ { "default": true, @@ -181986,6 +185489,11 @@ ] }, "minecraft:potted_red_mushroom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:red_mushroom", + "properties": {} + }, "states": [ { "default": true, @@ -181994,6 +185502,11 @@ ] }, "minecraft:potted_red_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:red_tulip", + "properties": {} + }, "states": [ { "default": true, @@ -182002,6 +185515,11 @@ ] }, "minecraft:potted_spruce_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:spruce_sapling", + "properties": {} + }, "states": [ { "default": true, @@ -182010,6 +185528,11 @@ ] }, "minecraft:potted_torchflower": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:torchflower", + "properties": {} + }, "states": [ { "default": true, @@ -182018,6 +185541,11 @@ ] }, "minecraft:potted_warped_fungus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:warped_fungus", + "properties": {} + }, "states": [ { "default": true, @@ -182026,6 +185554,11 @@ ] }, "minecraft:potted_warped_roots": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:warped_roots", + "properties": {} + }, "states": [ { "default": true, @@ -182034,6 +185567,11 @@ ] }, "minecraft:potted_white_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:white_tulip", + "properties": {} + }, "states": [ { "default": true, @@ -182042,6 +185580,11 @@ ] }, "minecraft:potted_wither_rose": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:wither_rose", + "properties": {} + }, "states": [ { "default": true, @@ -182050,6 +185593,10 @@ ] }, "minecraft:powder_snow": { + "definition": { + "type": "minecraft:powder_snow", + "properties": {} + }, "states": [ { "default": true, @@ -182058,6 +185605,12 @@ ] }, "minecraft:powder_snow_cauldron": { + "definition": { + "type": "minecraft:layered_cauldron", + "interactions": "powder_snow", + "precipitation": "snow", + "properties": {} + }, "properties": { "level": [ "1", @@ -182088,6 +185641,10 @@ ] }, "minecraft:powered_rail": { + "definition": { + "type": "minecraft:powered_rail", + "properties": {} + }, "properties": { "powered": [ "true", @@ -182303,6 +185860,10 @@ ] }, "minecraft:prismarine": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -182311,6 +185872,10 @@ ] }, "minecraft:prismarine_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -182369,6 +185934,13 @@ ] }, "minecraft:prismarine_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:prismarine_bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -183117,6 +186689,10 @@ ] }, "minecraft:prismarine_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -183125,6 +186701,10 @@ ] }, "minecraft:prismarine_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -183183,6 +186763,13 @@ ] }, "minecraft:prismarine_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:prismarine" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -183931,6 +187518,10 @@ ] }, "minecraft:prismarine_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -187530,6 +191121,10 @@ ] }, "minecraft:pumpkin": { + "definition": { + "type": "minecraft:pumpkin", + "properties": {} + }, "states": [ { "default": true, @@ -187538,6 +191133,13 @@ ] }, "minecraft:pumpkin_stem": { + "definition": { + "type": "minecraft:stem", + "attached_stem": "minecraft:attached_pumpkin_stem", + "fruit": "minecraft:pumpkin", + "properties": {}, + "seed": "minecraft:pumpkin_seeds" + }, "properties": { "age": [ "0", @@ -187603,6 +191205,11 @@ ] }, "minecraft:purple_banner": { + "definition": { + "type": "minecraft:banner", + "color": "purple", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -187724,6 +191331,11 @@ ] }, "minecraft:purple_bed": { + "definition": { + "type": "minecraft:bed", + "color": "purple", + "properties": {} + }, "properties": { "facing": [ "north", @@ -187873,6 +191485,10 @@ ] }, "minecraft:purple_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -188022,6 +191638,11 @@ ] }, "minecraft:purple_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:purple_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -188045,6 +191666,11 @@ ] }, "minecraft:purple_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "purple", + "properties": {} + }, "states": [ { "default": true, @@ -188053,6 +191679,10 @@ ] }, "minecraft:purple_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -188061,6 +191691,11 @@ ] }, "minecraft:purple_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:purple_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -188069,6 +191704,10 @@ ] }, "minecraft:purple_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -188106,6 +191745,11 @@ ] }, "minecraft:purple_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "purple", + "properties": {} + }, "properties": { "facing": [ "north", @@ -188157,6 +191801,11 @@ ] }, "minecraft:purple_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "purple", + "properties": {} + }, "states": [ { "default": true, @@ -188165,6 +191814,11 @@ ] }, "minecraft:purple_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "purple", + "properties": {} + }, "properties": { "east": [ "true", @@ -188512,6 +192166,10 @@ ] }, "minecraft:purple_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -188520,6 +192178,11 @@ ] }, "minecraft:purple_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "purple", + "properties": {} + }, "properties": { "facing": [ "north", @@ -188557,6 +192220,10 @@ ] }, "minecraft:purple_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -188565,6 +192232,10 @@ ] }, "minecraft:purpur_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -188573,6 +192244,10 @@ ] }, "minecraft:purpur_pillar": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -188603,6 +192278,10 @@ ] }, "minecraft:purpur_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -188661,6 +192340,13 @@ ] }, "minecraft:purpur_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:purpur_block" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -189409,6 +193095,10 @@ ] }, "minecraft:quartz_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -189417,6 +193107,10 @@ ] }, "minecraft:quartz_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -189425,6 +193119,10 @@ ] }, "minecraft:quartz_pillar": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -189455,6 +193153,10 @@ ] }, "minecraft:quartz_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -189513,6 +193215,13 @@ ] }, "minecraft:quartz_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:quartz_block" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -190261,6 +193970,10 @@ ] }, "minecraft:rail": { + "definition": { + "type": "minecraft:rail", + "properties": {} + }, "properties": { "shape": [ "north_south", @@ -190424,6 +194137,10 @@ ] }, "minecraft:raw_copper_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -190432,6 +194149,10 @@ ] }, "minecraft:raw_gold_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -190440,6 +194161,10 @@ ] }, "minecraft:raw_iron_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -190448,6 +194173,11 @@ ] }, "minecraft:red_banner": { + "definition": { + "type": "minecraft:banner", + "color": "red", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -190569,6 +194299,11 @@ ] }, "minecraft:red_bed": { + "definition": { + "type": "minecraft:bed", + "color": "red", + "properties": {} + }, "properties": { "facing": [ "north", @@ -190718,6 +194453,10 @@ ] }, "minecraft:red_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -190867,6 +194606,11 @@ ] }, "minecraft:red_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:red_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -190890,6 +194634,11 @@ ] }, "minecraft:red_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "red", + "properties": {} + }, "states": [ { "default": true, @@ -190898,6 +194647,10 @@ ] }, "minecraft:red_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -190906,6 +194659,11 @@ ] }, "minecraft:red_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:red_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -190914,6 +194672,10 @@ ] }, "minecraft:red_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -190951,6 +194713,11 @@ ] }, "minecraft:red_mushroom": { + "definition": { + "type": "minecraft:mushroom", + "feature": "minecraft:huge_red_mushroom", + "properties": {} + }, "states": [ { "default": true, @@ -190959,6 +194726,10 @@ ] }, "minecraft:red_mushroom_block": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, "properties": { "down": [ "true", @@ -191694,6 +195465,10 @@ ] }, "minecraft:red_nether_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -191752,6 +195527,13 @@ ] }, "minecraft:red_nether_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:red_nether_bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -192500,6 +196282,10 @@ ] }, "minecraft:red_nether_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -196099,6 +199885,10 @@ ] }, "minecraft:red_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -196107,6 +199897,11 @@ ] }, "minecraft:red_sand": { + "definition": { + "type": "minecraft:colored_falling", + "falling_dust_color": "#00A95821", + "properties": {} + }, "states": [ { "default": true, @@ -196115,6 +199910,10 @@ ] }, "minecraft:red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -196123,6 +199922,10 @@ ] }, "minecraft:red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -196181,6 +199984,13 @@ ] }, "minecraft:red_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:red_sandstone" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -196929,6 +200739,10 @@ ] }, "minecraft:red_sandstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -200528,6 +204342,11 @@ ] }, "minecraft:red_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "red", + "properties": {} + }, "properties": { "facing": [ "north", @@ -200579,6 +204398,11 @@ ] }, "minecraft:red_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "red", + "properties": {} + }, "states": [ { "default": true, @@ -200587,6 +204411,11 @@ ] }, "minecraft:red_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "red", + "properties": {} + }, "properties": { "east": [ "true", @@ -200934,6 +204763,10 @@ ] }, "minecraft:red_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -200942,6 +204775,16 @@ ] }, "minecraft:red_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 180, + "id": "minecraft:weakness" + } + ] + }, "states": [ { "default": true, @@ -200950,6 +204793,11 @@ ] }, "minecraft:red_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "red", + "properties": {} + }, "properties": { "facing": [ "north", @@ -200987,6 +204835,10 @@ ] }, "minecraft:red_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -200995,6 +204847,10 @@ ] }, "minecraft:redstone_block": { + "definition": { + "type": "minecraft:powered", + "properties": {} + }, "states": [ { "default": true, @@ -201003,6 +204859,10 @@ ] }, "minecraft:redstone_lamp": { + "definition": { + "type": "minecraft:redstone_lamp", + "properties": {} + }, "properties": { "lit": [ "true", @@ -201026,6 +204886,10 @@ ] }, "minecraft:redstone_ore": { + "definition": { + "type": "minecraft:redstone_ore", + "properties": {} + }, "properties": { "lit": [ "true", @@ -201049,6 +204913,10 @@ ] }, "minecraft:redstone_torch": { + "definition": { + "type": "minecraft:redstone_torch", + "properties": {} + }, "properties": { "lit": [ "true", @@ -201072,6 +204940,10 @@ ] }, "minecraft:redstone_wall_torch": { + "definition": { + "type": "minecraft:redstone_wall_torch", + "properties": {} + }, "properties": { "facing": [ "north", @@ -201145,6 +205017,10 @@ ] }, "minecraft:redstone_wire": { + "definition": { + "type": "minecraft:redstone_wire", + "properties": {} + }, "properties": { "east": [ "up", @@ -214150,6 +218026,10 @@ ] }, "minecraft:reinforced_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -214158,6 +218038,10 @@ ] }, "minecraft:repeater": { + "definition": { + "type": "minecraft:repeater", + "properties": {} + }, "properties": { "delay": [ "1", @@ -214761,6 +218645,11 @@ ] }, "minecraft:repeating_command_block": { + "definition": { + "type": "minecraft:command", + "automatic": false, + "properties": {} + }, "properties": { "conditional": [ "true", @@ -214864,6 +218753,10 @@ ] }, "minecraft:respawn_anchor": { + "definition": { + "type": "minecraft:respawn_anchor", + "properties": {} + }, "properties": { "charges": [ "0", @@ -214908,6 +218801,10 @@ ] }, "minecraft:rooted_dirt": { + "definition": { + "type": "minecraft:rooted_dirt", + "properties": {} + }, "states": [ { "default": true, @@ -214916,6 +218813,10 @@ ] }, "minecraft:rose_bush": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, "properties": { "half": [ "upper", @@ -214939,6 +218840,11 @@ ] }, "minecraft:sand": { + "definition": { + "type": "minecraft:colored_falling", + "falling_dust_color": "#00DBD3A0", + "properties": {} + }, "states": [ { "default": true, @@ -214947,6 +218853,10 @@ ] }, "minecraft:sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -214955,6 +218865,10 @@ ] }, "minecraft:sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -215013,6 +218927,13 @@ ] }, "minecraft:sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:sandstone" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -215761,6 +219682,10 @@ ] }, "minecraft:sandstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -219360,6 +223285,10 @@ ] }, "minecraft:scaffolding": { + "definition": { + "type": "minecraft:scaffolding", + "properties": {} + }, "properties": { "bottom": [ "true", @@ -219641,6 +223570,10 @@ ] }, "minecraft:sculk": { + "definition": { + "type": "minecraft:sculk", + "properties": {} + }, "states": [ { "default": true, @@ -219649,6 +223582,10 @@ ] }, "minecraft:sculk_catalyst": { + "definition": { + "type": "minecraft:sculk_catalyst", + "properties": {} + }, "properties": { "bloom": [ "true", @@ -219672,6 +223609,10 @@ ] }, "minecraft:sculk_sensor": { + "definition": { + "type": "minecraft:sculk_sensor", + "properties": {} + }, "properties": { "power": [ "0", @@ -220474,6 +224415,10 @@ ] }, "minecraft:sculk_shrieker": { + "definition": { + "type": "minecraft:sculk_shrieker", + "properties": {} + }, "properties": { "can_summon": [ "true", @@ -220557,6 +224502,10 @@ ] }, "minecraft:sculk_vein": { + "definition": { + "type": "minecraft:sculk_vein", + "properties": {} + }, "properties": { "down": [ "true", @@ -222128,6 +226077,10 @@ ] }, "minecraft:sea_lantern": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -222136,6 +226089,10 @@ ] }, "minecraft:sea_pickle": { + "definition": { + "type": "minecraft:sea_pickle", + "properties": {} + }, "properties": { "pickles": [ "1", @@ -222209,6 +226166,10 @@ ] }, "minecraft:seagrass": { + "definition": { + "type": "minecraft:seagrass", + "properties": {} + }, "states": [ { "default": true, @@ -222217,6 +226178,10 @@ ] }, "minecraft:short_grass": { + "definition": { + "type": "minecraft:tall_grass", + "properties": {} + }, "states": [ { "default": true, @@ -222225,6 +226190,10 @@ ] }, "minecraft:shroomlight": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -222233,6 +226202,10 @@ ] }, "minecraft:shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "properties": {} + }, "properties": { "facing": [ "north", @@ -222284,6 +226257,11 @@ ] }, "minecraft:skeleton_skull": { + "definition": { + "type": "minecraft:skull", + "kind": "skeleton", + "properties": {} + }, "properties": { "powered": [ "true", @@ -222537,6 +226515,11 @@ ] }, "minecraft:skeleton_wall_skull": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "skeleton", + "properties": {} + }, "properties": { "facing": [ "north", @@ -222610,6 +226593,10 @@ ] }, "minecraft:slime_block": { + "definition": { + "type": "minecraft:slime", + "properties": {} + }, "states": [ { "default": true, @@ -222618,6 +226605,12 @@ ] }, "minecraft:small_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "aabb_offset": 4.0, + "height": 3.0, + "properties": {} + }, "properties": { "facing": [ "north", @@ -222721,6 +226714,10 @@ ] }, "minecraft:small_dripleaf": { + "definition": { + "type": "minecraft:small_dripleaf", + "properties": {} + }, "properties": { "facing": [ "north", @@ -222870,6 +226867,10 @@ ] }, "minecraft:smithing_table": { + "definition": { + "type": "minecraft:smithing_table", + "properties": {} + }, "states": [ { "default": true, @@ -222878,6 +226879,10 @@ ] }, "minecraft:smoker": { + "definition": { + "type": "minecraft:smoker", + "properties": {} + }, "properties": { "facing": [ "north", @@ -222951,6 +226956,10 @@ ] }, "minecraft:smooth_basalt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -222959,6 +226968,10 @@ ] }, "minecraft:smooth_quartz": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -222967,6 +226980,10 @@ ] }, "minecraft:smooth_quartz_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -223025,6 +227042,13 @@ ] }, "minecraft:smooth_quartz_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_quartz" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -223773,6 +227797,10 @@ ] }, "minecraft:smooth_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -223781,6 +227809,10 @@ ] }, "minecraft:smooth_red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -223839,6 +227871,13 @@ ] }, "minecraft:smooth_red_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_red_sandstone" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -224587,6 +228626,10 @@ ] }, "minecraft:smooth_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -224595,6 +228638,10 @@ ] }, "minecraft:smooth_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -224653,6 +228700,13 @@ ] }, "minecraft:smooth_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_sandstone" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -225401,6 +229455,10 @@ ] }, "minecraft:smooth_stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -225409,6 +229467,10 @@ ] }, "minecraft:smooth_stone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -225467,6 +229529,10 @@ ] }, "minecraft:sniffer_egg": { + "definition": { + "type": "minecraft:sniffer_egg", + "properties": {} + }, "properties": { "hatch": [ "0", @@ -225497,6 +229563,10 @@ ] }, "minecraft:snow": { + "definition": { + "type": "minecraft:snow_layer", + "properties": {} + }, "properties": { "layers": [ "1", @@ -225562,6 +229632,10 @@ ] }, "minecraft:snow_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -225570,6 +229644,12 @@ ] }, "minecraft:soul_campfire": { + "definition": { + "type": "minecraft:campfire", + "fire_damage": 2, + "properties": {}, + "spawn_particles": false + }, "properties": { "facing": [ "north", @@ -225883,6 +229963,10 @@ ] }, "minecraft:soul_fire": { + "definition": { + "type": "minecraft:soul_fire", + "properties": {} + }, "states": [ { "default": true, @@ -225891,6 +229975,10 @@ ] }, "minecraft:soul_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, "properties": { "hanging": [ "true", @@ -225934,6 +230022,10 @@ ] }, "minecraft:soul_sand": { + "definition": { + "type": "minecraft:soul_sand", + "properties": {} + }, "states": [ { "default": true, @@ -225942,6 +230034,10 @@ ] }, "minecraft:soul_soil": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -225950,6 +230046,11 @@ ] }, "minecraft:soul_torch": { + "definition": { + "type": "minecraft:torch", + "particle_options": "minecraft:soul_fire_flame", + "properties": {} + }, "states": [ { "default": true, @@ -225958,6 +230059,11 @@ ] }, "minecraft:soul_wall_torch": { + "definition": { + "type": "minecraft:wall_torch", + "particle_options": "minecraft:soul_fire_flame", + "properties": {} + }, "properties": { "facing": [ "north", @@ -225995,6 +230101,10 @@ ] }, "minecraft:spawner": { + "definition": { + "type": "minecraft:spawner", + "properties": {} + }, "states": [ { "default": true, @@ -226003,6 +230113,10 @@ ] }, "minecraft:sponge": { + "definition": { + "type": "minecraft:sponge", + "properties": {} + }, "states": [ { "default": true, @@ -226011,6 +230125,10 @@ ] }, "minecraft:spore_blossom": { + "definition": { + "type": "minecraft:spore_blossom", + "properties": {} + }, "states": [ { "default": true, @@ -226019,6 +230137,12 @@ ] }, "minecraft:spruce_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "spruce", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -226233,6 +230357,11 @@ ] }, "minecraft:spruce_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "spruce", + "properties": {} + }, "properties": { "facing": [ "north", @@ -226902,6 +231031,10 @@ ] }, "minecraft:spruce_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -227249,6 +231382,11 @@ ] }, "minecraft:spruce_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "spruce" + }, "properties": { "facing": [ "north", @@ -227562,6 +231700,11 @@ ] }, "minecraft:spruce_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "spruce" + }, "properties": { "attached": [ "true", @@ -228107,6 +232250,10 @@ ] }, "minecraft:spruce_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, "properties": { "distance": [ "1", @@ -228355,6 +232502,10 @@ ] }, "minecraft:spruce_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -228385,6 +232536,10 @@ ] }, "minecraft:spruce_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -228393,6 +232548,11 @@ ] }, "minecraft:spruce_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "spruce", + "properties": {} + }, "properties": { "powered": [ "true", @@ -228416,6 +232576,11 @@ ] }, "minecraft:spruce_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "spruce" + }, "properties": { "stage": [ "0", @@ -228439,6 +232604,11 @@ ] }, "minecraft:spruce_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "spruce" + }, "properties": { "rotation": [ "0", @@ -228692,6 +232862,10 @@ ] }, "minecraft:spruce_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -228750,6 +232924,13 @@ ] }, "minecraft:spruce_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:spruce_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -229498,6 +233679,11 @@ ] }, "minecraft:spruce_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "spruce", + "properties": {} + }, "properties": { "facing": [ "north", @@ -230167,6 +234353,11 @@ ] }, "minecraft:spruce_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "spruce" + }, "properties": { "facing": [ "north", @@ -230240,6 +234431,11 @@ ] }, "minecraft:spruce_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "spruce" + }, "properties": { "facing": [ "north", @@ -230313,6 +234509,10 @@ ] }, "minecraft:spruce_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -230343,6 +234543,11 @@ ] }, "minecraft:sticky_piston": { + "definition": { + "type": "minecraft:piston_base", + "properties": {}, + "sticky": true + }, "properties": { "extended": [ "true", @@ -230446,6 +234651,10 @@ ] }, "minecraft:stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -230454,6 +234663,10 @@ ] }, "minecraft:stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -230512,6 +234725,13 @@ ] }, "minecraft:stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:stone_bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -231260,6 +235480,10 @@ ] }, "minecraft:stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -234859,6 +239083,10 @@ ] }, "minecraft:stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -234867,6 +239095,12 @@ ] }, "minecraft:stone_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "stone", + "properties": {}, + "ticks_to_stay_pressed": 20 + }, "properties": { "face": [ "floor", @@ -235081,6 +239315,11 @@ ] }, "minecraft:stone_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "stone", + "properties": {} + }, "properties": { "powered": [ "true", @@ -235104,6 +239343,10 @@ ] }, "minecraft:stone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -235162,6 +239405,13 @@ ] }, "minecraft:stone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:stone" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -235910,6 +240160,10 @@ ] }, "minecraft:stonecutter": { + "definition": { + "type": "minecraft:stonecutter", + "properties": {} + }, "properties": { "facing": [ "north", @@ -235947,6 +240201,10 @@ ] }, "minecraft:stripped_acacia_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -235977,6 +240235,10 @@ ] }, "minecraft:stripped_acacia_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236007,6 +240269,10 @@ ] }, "minecraft:stripped_bamboo_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236037,6 +240303,10 @@ ] }, "minecraft:stripped_birch_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236067,6 +240337,10 @@ ] }, "minecraft:stripped_birch_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236097,6 +240371,10 @@ ] }, "minecraft:stripped_cherry_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236127,6 +240405,10 @@ ] }, "minecraft:stripped_cherry_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236157,6 +240439,10 @@ ] }, "minecraft:stripped_crimson_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236187,6 +240473,10 @@ ] }, "minecraft:stripped_crimson_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236217,6 +240507,10 @@ ] }, "minecraft:stripped_dark_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236247,6 +240541,10 @@ ] }, "minecraft:stripped_dark_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236277,6 +240575,10 @@ ] }, "minecraft:stripped_jungle_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236307,6 +240609,10 @@ ] }, "minecraft:stripped_jungle_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236337,6 +240643,10 @@ ] }, "minecraft:stripped_mangrove_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236367,6 +240677,10 @@ ] }, "minecraft:stripped_mangrove_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236397,6 +240711,10 @@ ] }, "minecraft:stripped_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236427,6 +240745,10 @@ ] }, "minecraft:stripped_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236457,6 +240779,10 @@ ] }, "minecraft:stripped_spruce_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236487,6 +240813,10 @@ ] }, "minecraft:stripped_spruce_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236517,6 +240847,10 @@ ] }, "minecraft:stripped_warped_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236547,6 +240881,10 @@ ] }, "minecraft:stripped_warped_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -236577,6 +240915,10 @@ ] }, "minecraft:structure_block": { + "definition": { + "type": "minecraft:structure", + "properties": {} + }, "properties": { "mode": [ "save", @@ -236614,6 +240956,10 @@ ] }, "minecraft:structure_void": { + "definition": { + "type": "minecraft:structure_void", + "properties": {} + }, "states": [ { "default": true, @@ -236622,6 +240968,10 @@ ] }, "minecraft:sugar_cane": { + "definition": { + "type": "minecraft:sugar_cane", + "properties": {} + }, "properties": { "age": [ "0", @@ -236743,6 +241093,10 @@ ] }, "minecraft:sunflower": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, "properties": { "half": [ "upper", @@ -236766,6 +241120,13 @@ ] }, "minecraft:suspicious_gravel": { + "definition": { + "type": "minecraft:brushable", + "brush_comleted_sound": "minecraft:item.brush.brushing.gravel.complete", + "brush_sound": "minecraft:item.brush.brushing.gravel", + "properties": {}, + "turns_into": "minecraft:gravel" + }, "properties": { "dusted": [ "0", @@ -236803,6 +241164,13 @@ ] }, "minecraft:suspicious_sand": { + "definition": { + "type": "minecraft:brushable", + "brush_comleted_sound": "minecraft:item.brush.brushing.sand.complete", + "brush_sound": "minecraft:item.brush.brushing.sand", + "properties": {}, + "turns_into": "minecraft:sand" + }, "properties": { "dusted": [ "0", @@ -236840,6 +241208,10 @@ ] }, "minecraft:sweet_berry_bush": { + "definition": { + "type": "minecraft:sweet_berry_bush", + "properties": {} + }, "properties": { "age": [ "0", @@ -236877,6 +241249,10 @@ ] }, "minecraft:tall_grass": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, "properties": { "half": [ "upper", @@ -236900,6 +241276,10 @@ ] }, "minecraft:tall_seagrass": { + "definition": { + "type": "minecraft:tall_seagrass", + "properties": {} + }, "properties": { "half": [ "upper", @@ -236923,6 +241303,10 @@ ] }, "minecraft:target": { + "definition": { + "type": "minecraft:target", + "properties": {} + }, "properties": { "power": [ "0", @@ -237044,6 +241428,10 @@ ] }, "minecraft:terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -237052,6 +241440,10 @@ ] }, "minecraft:tinted_glass": { + "definition": { + "type": "minecraft:tinted_glass", + "properties": {} + }, "states": [ { "default": true, @@ -237060,6 +241452,10 @@ ] }, "minecraft:tnt": { + "definition": { + "type": "minecraft:tnt", + "properties": {} + }, "properties": { "unstable": [ "true", @@ -237083,6 +241479,11 @@ ] }, "minecraft:torch": { + "definition": { + "type": "minecraft:torch", + "particle_options": "minecraft:flame", + "properties": {} + }, "states": [ { "default": true, @@ -237091,6 +241492,16 @@ ] }, "minecraft:torchflower": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, "states": [ { "default": true, @@ -237099,6 +241510,10 @@ ] }, "minecraft:torchflower_crop": { + "definition": { + "type": "minecraft:torchflower_crop", + "properties": {} + }, "properties": { "age": [ "0", @@ -237122,6 +241537,10 @@ ] }, "minecraft:trapped_chest": { + "definition": { + "type": "minecraft:trapped_chest", + "properties": {} + }, "properties": { "type": [ "single", @@ -237336,7 +241755,15 @@ ] }, "minecraft:trial_spawner": { + "definition": { + "type": "minecraft:trial_spawner", + "properties": {} + }, "properties": { + "ominous": [ + "true", + "false" + ], "trial_spawner_state": [ "inactive", "waiting_for_players", @@ -237348,45 +241775,98 @@ }, "states": [ { - "default": true, "id": 26638, "properties": { + "ominous": "true", "trial_spawner_state": "inactive" } }, { "id": 26639, "properties": { + "ominous": "true", "trial_spawner_state": "waiting_for_players" } }, { "id": 26640, "properties": { + "ominous": "true", "trial_spawner_state": "active" } }, { "id": 26641, "properties": { + "ominous": "true", "trial_spawner_state": "waiting_for_reward_ejection" } }, { "id": 26642, "properties": { + "ominous": "true", "trial_spawner_state": "ejecting_reward" } }, { "id": 26643, "properties": { + "ominous": "true", + "trial_spawner_state": "cooldown" + } + }, + { + "default": true, + "id": 26644, + "properties": { + "ominous": "false", + "trial_spawner_state": "inactive" + } + }, + { + "id": 26645, + "properties": { + "ominous": "false", + "trial_spawner_state": "waiting_for_players" + } + }, + { + "id": 26646, + "properties": { + "ominous": "false", + "trial_spawner_state": "active" + } + }, + { + "id": 26647, + "properties": { + "ominous": "false", + "trial_spawner_state": "waiting_for_reward_ejection" + } + }, + { + "id": 26648, + "properties": { + "ominous": "false", + "trial_spawner_state": "ejecting_reward" + } + }, + { + "id": 26649, + "properties": { + "ominous": "false", "trial_spawner_state": "cooldown" } } ] }, "minecraft:tripwire": { + "definition": { + "type": "minecraft:tripwire", + "hook": "minecraft:tripwire_hook", + "properties": {} + }, "properties": { "attached": [ "true", @@ -238958,6 +243438,10 @@ ] }, "minecraft:tripwire_hook": { + "definition": { + "type": "minecraft:trip_wire_hook", + "properties": {} + }, "properties": { "attached": [ "true", @@ -239107,6 +243591,11 @@ ] }, "minecraft:tube_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_tube_coral", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -239130,6 +243619,11 @@ ] }, "minecraft:tube_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_tube_coral_block", + "properties": {} + }, "states": [ { "default": true, @@ -239138,6 +243632,11 @@ ] }, "minecraft:tube_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_tube_coral_fan", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -239161,6 +243660,11 @@ ] }, "minecraft:tube_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_tube_coral_wall_fan", + "properties": {} + }, "properties": { "facing": [ "north", @@ -239234,6 +243738,10 @@ ] }, "minecraft:tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -239242,6 +243750,10 @@ ] }, "minecraft:tuff_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -239300,6 +243812,13 @@ ] }, "minecraft:tuff_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:tuff_bricks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -240048,6 +244567,10 @@ ] }, "minecraft:tuff_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -243647,6 +248170,10 @@ ] }, "minecraft:tuff_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -243655,6 +248182,10 @@ ] }, "minecraft:tuff_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -243713,6 +248244,13 @@ ] }, "minecraft:tuff_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:tuff" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -244461,6 +248999,10 @@ ] }, "minecraft:tuff_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, "properties": { "east": [ "none", @@ -248060,6 +252602,10 @@ ] }, "minecraft:turtle_egg": { + "definition": { + "type": "minecraft:turtle_egg", + "properties": {} + }, "properties": { "eggs": [ "1", @@ -248162,6 +252708,10 @@ ] }, "minecraft:twisting_vines": { + "definition": { + "type": "minecraft:twisting_vines", + "properties": {} + }, "properties": { "age": [ "0", @@ -248353,6 +252903,10 @@ ] }, "minecraft:twisting_vines_plant": { + "definition": { + "type": "minecraft:twisting_vines_plant", + "properties": {} + }, "states": [ { "default": true, @@ -248360,7 +252914,294 @@ } ] }, + "minecraft:vault": { + "definition": { + "type": "minecraft:vault", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "ominous": [ + "true", + "false" + ], + "vault_state": [ + "inactive", + "active", + "unlocking", + "ejecting" + ] + }, + "states": [ + { + "id": 26650, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 26651, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 26652, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 26653, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "default": true, + "id": 26654, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 26655, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 26656, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 26657, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 26658, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 26659, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 26660, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 26661, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 26662, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 26663, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 26664, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 26665, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 26666, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 26667, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 26668, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 26669, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 26670, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 26671, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 26672, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 26673, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 26674, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 26675, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 26676, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 26677, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 26678, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 26679, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 26680, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 26681, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "ejecting" + } + } + ] + }, "minecraft:verdant_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -248391,6 +253232,10 @@ ] }, "minecraft:vine": { + "definition": { + "type": "minecraft:vine", + "properties": {} + }, "properties": { "east": [ "true", @@ -248738,6 +253583,10 @@ ] }, "minecraft:void_air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, "states": [ { "default": true, @@ -248746,6 +253595,11 @@ ] }, "minecraft:wall_torch": { + "definition": { + "type": "minecraft:wall_torch", + "particle_options": "minecraft:flame", + "properties": {} + }, "properties": { "facing": [ "north", @@ -248783,6 +253637,12 @@ ] }, "minecraft:warped_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "warped", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, "properties": { "face": [ "floor", @@ -248997,6 +253857,11 @@ ] }, "minecraft:warped_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "warped", + "properties": {} + }, "properties": { "facing": [ "north", @@ -249666,6 +254531,10 @@ ] }, "minecraft:warped_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, "properties": { "east": [ "true", @@ -250013,6 +254882,11 @@ ] }, "minecraft:warped_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "warped" + }, "properties": { "facing": [ "north", @@ -250326,6 +255200,12 @@ ] }, "minecraft:warped_fungus": { + "definition": { + "type": "minecraft:fungus", + "feature": "minecraft:warped_fungus_planted", + "grows_on": "minecraft:warped_nylium", + "properties": {} + }, "states": [ { "default": true, @@ -250334,6 +255214,11 @@ ] }, "minecraft:warped_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "warped" + }, "properties": { "attached": [ "true", @@ -250879,6 +255764,10 @@ ] }, "minecraft:warped_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -250909,6 +255798,10 @@ ] }, "minecraft:warped_nylium": { + "definition": { + "type": "minecraft:nylium", + "properties": {} + }, "states": [ { "default": true, @@ -250917,6 +255810,10 @@ ] }, "minecraft:warped_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -250925,6 +255822,11 @@ ] }, "minecraft:warped_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "warped", + "properties": {} + }, "properties": { "powered": [ "true", @@ -250948,6 +255850,10 @@ ] }, "minecraft:warped_roots": { + "definition": { + "type": "minecraft:roots", + "properties": {} + }, "states": [ { "default": true, @@ -250956,6 +255862,11 @@ ] }, "minecraft:warped_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "warped" + }, "properties": { "rotation": [ "0", @@ -251209,6 +256120,10 @@ ] }, "minecraft:warped_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -251267,6 +256182,13 @@ ] }, "minecraft:warped_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:warped_planks" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -252015,6 +256937,10 @@ ] }, "minecraft:warped_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, "properties": { "axis": [ "x", @@ -252045,6 +256971,11 @@ ] }, "minecraft:warped_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "warped", + "properties": {} + }, "properties": { "facing": [ "north", @@ -252714,6 +257645,11 @@ ] }, "minecraft:warped_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "warped" + }, "properties": { "facing": [ "north", @@ -252787,6 +257723,11 @@ ] }, "minecraft:warped_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "warped" + }, "properties": { "facing": [ "north", @@ -252860,6 +257801,10 @@ ] }, "minecraft:warped_wart_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -252868,6 +257813,11 @@ ] }, "minecraft:water": { + "definition": { + "type": "minecraft:liquid", + "fluid": "minecraft:water", + "properties": {} + }, "properties": { "level": [ "0", @@ -252989,6 +257939,12 @@ ] }, "minecraft:water_cauldron": { + "definition": { + "type": "minecraft:layered_cauldron", + "interactions": "water", + "precipitation": "rain", + "properties": {} + }, "properties": { "level": [ "1", @@ -253019,6 +257975,10 @@ ] }, "minecraft:waxed_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -253027,6 +257987,10 @@ ] }, "minecraft:waxed_copper_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -253035,6 +257999,10 @@ ] }, "minecraft:waxed_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, "properties": { "lit": [ "true", @@ -253078,6 +258046,11 @@ ] }, "minecraft:waxed_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, "properties": { "facing": [ "north", @@ -253747,6 +258720,10 @@ ] }, "minecraft:waxed_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -253770,6 +258747,11 @@ ] }, "minecraft:waxed_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, "properties": { "facing": [ "north", @@ -254439,6 +259421,10 @@ ] }, "minecraft:waxed_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -254447,6 +259433,10 @@ ] }, "minecraft:waxed_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -254505,6 +259495,13 @@ ] }, "minecraft:waxed_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_cut_copper" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -255253,6 +260250,10 @@ ] }, "minecraft:waxed_exposed_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -255261,6 +260262,10 @@ ] }, "minecraft:waxed_exposed_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -255269,6 +260274,10 @@ ] }, "minecraft:waxed_exposed_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, "properties": { "lit": [ "true", @@ -255312,6 +260321,11 @@ ] }, "minecraft:waxed_exposed_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, "properties": { "facing": [ "north", @@ -255981,6 +260995,10 @@ ] }, "minecraft:waxed_exposed_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -256004,6 +261022,11 @@ ] }, "minecraft:waxed_exposed_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, "properties": { "facing": [ "north", @@ -256673,6 +261696,10 @@ ] }, "minecraft:waxed_exposed_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -256681,6 +261708,10 @@ ] }, "minecraft:waxed_exposed_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -256739,6 +261770,13 @@ ] }, "minecraft:waxed_exposed_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_exposed_cut_copper" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -257487,6 +262525,10 @@ ] }, "minecraft:waxed_oxidized_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -257495,6 +262537,10 @@ ] }, "minecraft:waxed_oxidized_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -257503,6 +262549,10 @@ ] }, "minecraft:waxed_oxidized_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, "properties": { "lit": [ "true", @@ -257546,6 +262596,11 @@ ] }, "minecraft:waxed_oxidized_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, "properties": { "facing": [ "north", @@ -258215,6 +263270,10 @@ ] }, "minecraft:waxed_oxidized_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -258238,6 +263297,11 @@ ] }, "minecraft:waxed_oxidized_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, "properties": { "facing": [ "north", @@ -258907,6 +263971,10 @@ ] }, "minecraft:waxed_oxidized_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -258915,6 +263983,10 @@ ] }, "minecraft:waxed_oxidized_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -258973,6 +264045,13 @@ ] }, "minecraft:waxed_oxidized_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_oxidized_cut_copper" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -259721,6 +264800,10 @@ ] }, "minecraft:waxed_weathered_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -259729,6 +264812,10 @@ ] }, "minecraft:waxed_weathered_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -259737,6 +264824,10 @@ ] }, "minecraft:waxed_weathered_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, "properties": { "lit": [ "true", @@ -259780,6 +264871,11 @@ ] }, "minecraft:waxed_weathered_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, "properties": { "facing": [ "north", @@ -260449,6 +265545,10 @@ ] }, "minecraft:waxed_weathered_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, "properties": { "waterlogged": [ "true", @@ -260472,6 +265572,11 @@ ] }, "minecraft:waxed_weathered_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, "properties": { "facing": [ "north", @@ -261141,6 +266246,10 @@ ] }, "minecraft:waxed_weathered_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -261149,6 +266258,10 @@ ] }, "minecraft:waxed_weathered_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, "properties": { "type": [ "top", @@ -261207,6 +266320,13 @@ ] }, "minecraft:waxed_weathered_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_weathered_cut_copper" + }, + "properties": {} + }, "properties": { "facing": [ "north", @@ -261955,6 +267075,11 @@ ] }, "minecraft:weathered_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, "states": [ { "default": true, @@ -261963,6 +267088,11 @@ ] }, "minecraft:weathered_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, "states": [ { "default": true, @@ -261971,6 +267101,11 @@ ] }, "minecraft:weathered_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "weathered" + }, "properties": { "lit": [ "true", @@ -262014,6 +267149,12 @@ ] }, "minecraft:weathered_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "weathered" + }, "properties": { "facing": [ "north", @@ -262683,6 +267824,11 @@ ] }, "minecraft:weathered_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "weathered" + }, "properties": { "waterlogged": [ "true", @@ -262706,6 +267852,12 @@ ] }, "minecraft:weathered_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "weathered" + }, "properties": { "facing": [ "north", @@ -263375,6 +268527,11 @@ ] }, "minecraft:weathered_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, "states": [ { "default": true, @@ -263383,6 +268540,11 @@ ] }, "minecraft:weathered_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "weathered" + }, "properties": { "type": [ "top", @@ -263441,6 +268603,14 @@ ] }, "minecraft:weathered_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:weathered_cut_copper" + }, + "properties": {}, + "weathering_state": "weathered" + }, "properties": { "facing": [ "north", @@ -264189,6 +269359,10 @@ ] }, "minecraft:weeping_vines": { + "definition": { + "type": "minecraft:weeping_vines", + "properties": {} + }, "properties": { "age": [ "0", @@ -264380,6 +269554,10 @@ ] }, "minecraft:weeping_vines_plant": { + "definition": { + "type": "minecraft:weeping_vines_plant", + "properties": {} + }, "states": [ { "default": true, @@ -264388,6 +269566,10 @@ ] }, "minecraft:wet_sponge": { + "definition": { + "type": "minecraft:wet_sponge", + "properties": {} + }, "states": [ { "default": true, @@ -264396,6 +269578,10 @@ ] }, "minecraft:wheat": { + "definition": { + "type": "minecraft:crop", + "properties": {} + }, "properties": { "age": [ "0", @@ -264461,6 +269647,11 @@ ] }, "minecraft:white_banner": { + "definition": { + "type": "minecraft:banner", + "color": "white", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -264582,6 +269773,11 @@ ] }, "minecraft:white_bed": { + "definition": { + "type": "minecraft:bed", + "color": "white", + "properties": {} + }, "properties": { "facing": [ "north", @@ -264731,6 +269927,10 @@ ] }, "minecraft:white_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -264880,6 +270080,11 @@ ] }, "minecraft:white_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:white_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -264903,6 +270108,11 @@ ] }, "minecraft:white_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "white", + "properties": {} + }, "states": [ { "default": true, @@ -264911,6 +270121,10 @@ ] }, "minecraft:white_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -264919,6 +270133,11 @@ ] }, "minecraft:white_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:white_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -264927,6 +270146,10 @@ ] }, "minecraft:white_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -264964,6 +270187,11 @@ ] }, "minecraft:white_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "white", + "properties": {} + }, "properties": { "facing": [ "north", @@ -265015,6 +270243,11 @@ ] }, "minecraft:white_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "white", + "properties": {} + }, "states": [ { "default": true, @@ -265023,6 +270256,11 @@ ] }, "minecraft:white_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "white", + "properties": {} + }, "properties": { "east": [ "true", @@ -265370,6 +270608,10 @@ ] }, "minecraft:white_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -265378,6 +270620,16 @@ ] }, "minecraft:white_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 180, + "id": "minecraft:weakness" + } + ] + }, "states": [ { "default": true, @@ -265386,6 +270638,11 @@ ] }, "minecraft:white_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "white", + "properties": {} + }, "properties": { "facing": [ "north", @@ -265423,6 +270680,10 @@ ] }, "minecraft:white_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -265431,6 +270692,15 @@ ] }, "minecraft:wither_rose": { + "definition": { + "type": "minecraft:wither_rose", + "properties": {}, + "suspicious_stew_effects": [ + { + "id": "minecraft:wither" + } + ] + }, "states": [ { "default": true, @@ -265439,6 +270709,10 @@ ] }, "minecraft:wither_skeleton_skull": { + "definition": { + "type": "minecraft:wither_skull", + "properties": {} + }, "properties": { "powered": [ "true", @@ -265692,6 +270966,10 @@ ] }, "minecraft:wither_skeleton_wall_skull": { + "definition": { + "type": "minecraft:wither_wall_skull", + "properties": {} + }, "properties": { "facing": [ "north", @@ -265765,6 +271043,11 @@ ] }, "minecraft:yellow_banner": { + "definition": { + "type": "minecraft:banner", + "color": "yellow", + "properties": {} + }, "properties": { "rotation": [ "0", @@ -265886,6 +271169,11 @@ ] }, "minecraft:yellow_bed": { + "definition": { + "type": "minecraft:bed", + "color": "yellow", + "properties": {} + }, "properties": { "facing": [ "north", @@ -266035,6 +271323,10 @@ ] }, "minecraft:yellow_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, "properties": { "candles": [ "1", @@ -266184,6 +271476,11 @@ ] }, "minecraft:yellow_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:yellow_candle", + "properties": {} + }, "properties": { "lit": [ "true", @@ -266207,6 +271504,11 @@ ] }, "minecraft:yellow_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "yellow", + "properties": {} + }, "states": [ { "default": true, @@ -266215,6 +271517,10 @@ ] }, "minecraft:yellow_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -266223,6 +271529,11 @@ ] }, "minecraft:yellow_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:yellow_concrete", + "properties": {} + }, "states": [ { "default": true, @@ -266231,6 +271542,10 @@ ] }, "minecraft:yellow_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, "properties": { "facing": [ "north", @@ -266268,6 +271583,11 @@ ] }, "minecraft:yellow_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "yellow", + "properties": {} + }, "properties": { "facing": [ "north", @@ -266319,6 +271639,11 @@ ] }, "minecraft:yellow_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "yellow", + "properties": {} + }, "states": [ { "default": true, @@ -266327,6 +271652,11 @@ ] }, "minecraft:yellow_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "yellow", + "properties": {} + }, "properties": { "east": [ "true", @@ -266674,6 +272004,10 @@ ] }, "minecraft:yellow_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -266682,6 +272016,11 @@ ] }, "minecraft:yellow_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "yellow", + "properties": {} + }, "properties": { "facing": [ "north", @@ -266719,6 +272058,10 @@ ] }, "minecraft:yellow_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, "states": [ { "default": true, @@ -266727,6 +272070,11 @@ ] }, "minecraft:zombie_head": { + "definition": { + "type": "minecraft:skull", + "kind": "zombie", + "properties": {} + }, "properties": { "powered": [ "true", @@ -266980,6 +272328,11 @@ ] }, "minecraft:zombie_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "zombie", + "properties": {} + }, "properties": { "facing": [ "north", diff --git a/Obsidian/Assets/chat_type.json b/Obsidian/Assets/chat_type.json index e115b21b1..bbe4d643f 100644 --- a/Obsidian/Assets/chat_type.json +++ b/Obsidian/Assets/chat_type.json @@ -6,18 +6,18 @@ "id": 0, "element": { "chat": { - "translation_key": "chat.type.text", "parameters": [ "sender", "content" - ] + ], + "translation_key": "chat.type.text" }, "narration": { - "translation_key": "chat.type.text.narrate", "parameters": [ "sender", "content" - ] + ], + "translation_key": "chat.type.text.narrate" } } }, @@ -26,18 +26,18 @@ "id": 1, "element": { "chat": { - "translation_key": "chat.type.emote", "parameters": [ "sender", "content" - ] + ], + "translation_key": "chat.type.emote" }, "narration": { - "translation_key": "chat.type.emote", "parameters": [ "sender", "content" - ] + ], + "translation_key": "chat.type.emote" } } }, @@ -46,22 +46,22 @@ "id": 2, "element": { "chat": { - "translation_key": "commands.message.display.incoming", + "parameters": [ + "sender", + "content" + ], "style": { "color": "gray", "italic": true }, - "parameters": [ - "sender", - "content" - ] + "translation_key": "commands.message.display.incoming" }, "narration": { - "translation_key": "chat.type.text.narrate", "parameters": [ "sender", "content" - ] + ], + "translation_key": "chat.type.text.narrate" } } }, @@ -70,22 +70,22 @@ "id": 3, "element": { "chat": { - "translation_key": "commands.message.display.outgoing", + "parameters": [ + "target", + "content" + ], "style": { "color": "gray", "italic": true }, - "parameters": [ - "target", - "content" - ] + "translation_key": "commands.message.display.outgoing" }, "narration": { - "translation_key": "chat.type.text.narrate", "parameters": [ "sender", "content" - ] + ], + "translation_key": "chat.type.text.narrate" } } }, @@ -94,18 +94,18 @@ "id": 4, "element": { "chat": { - "translation_key": "chat.type.announcement", "parameters": [ "sender", "content" - ] + ], + "translation_key": "chat.type.announcement" }, "narration": { - "translation_key": "chat.type.text.narrate", "parameters": [ "sender", "content" - ] + ], + "translation_key": "chat.type.text.narrate" } } }, @@ -114,19 +114,19 @@ "id": 5, "element": { "chat": { - "translation_key": "chat.type.team.text", "parameters": [ "target", "sender", "content" - ] + ], + "translation_key": "chat.type.team.text" }, "narration": { - "translation_key": "chat.type.text.narrate", "parameters": [ "sender", "content" - ] + ], + "translation_key": "chat.type.text.narrate" } } }, @@ -135,21 +135,21 @@ "id": 6, "element": { "chat": { - "translation_key": "chat.type.team.sent", "parameters": [ "target", "sender", "content" - ] + ], + "translation_key": "chat.type.team.sent" }, "narration": { - "translation_key": "chat.type.text.narrate", "parameters": [ "sender", "content" - ] + ], + "translation_key": "chat.type.text.narrate" } } } ] -} \ No newline at end of file +} diff --git a/Obsidian/Assets/damage_type.json b/Obsidian/Assets/damage_type.json index bd4c5111f..e7ec8e9f1 100644 --- a/Obsidian/Assets/damage_type.json +++ b/Obsidian/Assets/damage_type.json @@ -318,6 +318,15 @@ }, { "id": 34, + "name": "minecraft:spit", + "element": { + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" + } + }, + { + "id": 35, "name": "minecraft:stalagmite", "element": { "exhaustion": 0, @@ -326,7 +335,7 @@ } }, { - "id": 35, + "id": 36, "name": "minecraft:starve", "element": { "exhaustion": 0, @@ -335,7 +344,7 @@ } }, { - "id": 36, + "id": 37, "name": "minecraft:sting", "element": { "exhaustion": 0.1, @@ -344,7 +353,7 @@ } }, { - "id": 37, + "id": 38, "name": "minecraft:sweet_berry_bush", "element": { "exhaustion": 0.1, @@ -354,7 +363,7 @@ } }, { - "id": 38, + "id": 39, "name": "minecraft:thorns", "element": { "exhaustion": 0.1, @@ -364,7 +373,7 @@ } }, { - "id": 39, + "id": 40, "name": "minecraft:thrown", "element": { "exhaustion": 0.1, @@ -373,7 +382,7 @@ } }, { - "id": 40, + "id": 41, "name": "minecraft:trident", "element": { "exhaustion": 0.1, @@ -382,7 +391,7 @@ } }, { - "id": 41, + "id": 42, "name": "minecraft:unattributed_fireball", "element": { "exhaustion": 0.1, @@ -392,7 +401,7 @@ } }, { - "id": 42, + "id": 43, "name": "minecraft:wither", "element": { "exhaustion": 0, @@ -401,7 +410,7 @@ } }, { - "id": 43, + "id": 44, "name": "minecraft:wither_skull", "element": { "exhaustion": 0.1, diff --git a/Obsidian/Assets/dimensions.json b/Obsidian/Assets/dimensions.json index 927c72292..ffc44ae5c 100644 --- a/Obsidian/Assets/dimensions.json +++ b/Obsidian/Assets/dimensions.json @@ -1,117 +1,111 @@ { + "type": "minecraft:dimension_type", "value": [ { "name": "minecraft:overworld", "id": 0, "element": { + "monster_spawn_block_light_limit": 0, + "monster_spawn_light_level": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 0 + }, "piglin_safe": false, "natural": true, - "ambient_light": 0.0, - "monster_spawn_block_light_limit": 0, + "ambient_light": 0, "infiniburn": "#minecraft:infiniburn_overworld", "respawn_anchor_works": false, "has_skylight": true, "bed_works": true, "effects": "minecraft:overworld", "has_raids": true, - "logical_height": 384, - "coordinate_scale": 1.0, - "monster_spawn_light_level": { - "type": "minecraft:uniform", - "value": { - "min_inclusive": 0, - "max_inclusive": 7 - } - }, "min_y": -64, + "height": 384, + "logical_height": 384, + "coordinate_scale": 1, "ultrawarm": false, - "has_ceiling": false, - "height": 384 + "has_ceiling": false } }, { "name": "minecraft:overworld_caves", "id": 1, "element": { + "monster_spawn_block_light_limit": 0, + "monster_spawn_light_level": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 0 + }, "piglin_safe": false, "natural": true, - "ambient_light": 0.0, - "monster_spawn_block_light_limit": 0, + "ambient_light": 0, "infiniburn": "#minecraft:infiniburn_overworld", "respawn_anchor_works": false, "has_skylight": true, "bed_works": true, "effects": "minecraft:overworld", "has_raids": true, - "logical_height": 384, - "coordinate_scale": 1.0, - "monster_spawn_light_level": { - "type": "minecraft:uniform", - "value": { - "min_inclusive": 0, - "max_inclusive": 7 - } - }, "min_y": -64, + "height": 384, + "logical_height": 384, + "coordinate_scale": 1, "ultrawarm": false, - "has_ceiling": true, - "height": 384 + "has_ceiling": true } }, { "name": "minecraft:the_end", "id": 2, "element": { + "monster_spawn_block_light_limit": 0, + "monster_spawn_light_level": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 0 + }, "piglin_safe": false, "natural": false, - "ambient_light": 0.0, - "monster_spawn_block_light_limit": 0, + "ambient_light": 0, + "fixed_time": 6000, "infiniburn": "#minecraft:infiniburn_end", "respawn_anchor_works": false, "has_skylight": false, "bed_works": false, "effects": "minecraft:the_end", - "fixed_time": 6000, "has_raids": true, - "logical_height": 256, - "coordinate_scale": 1.0, - "monster_spawn_light_level": { - "type": "minecraft:uniform", - "value": { - "min_inclusive": 0, - "max_inclusive": 7 - } - }, "min_y": 0, + "height": 256, + "logical_height": 256, + "coordinate_scale": 1, "ultrawarm": false, - "has_ceiling": false, - "height": 256 + "has_ceiling": false } }, { "name": "minecraft:the_nether", "id": 3, "element": { + "monster_spawn_block_light_limit": 15, + "monster_spawn_light_level": 7, "piglin_safe": true, "natural": false, "ambient_light": 0.1, - "monster_spawn_block_light_limit": 15, + "fixed_time": 18000, "infiniburn": "#minecraft:infiniburn_nether", "respawn_anchor_works": true, "has_skylight": false, "bed_works": false, "effects": "minecraft:the_nether", - "fixed_time": 18000, "has_raids": false, - "logical_height": 128, - "coordinate_scale": 8.0, - "monster_spawn_light_level": 7, "min_y": 0, + "height": 256, + "logical_height": 128, + "coordinate_scale": 8, "ultrawarm": true, - "has_ceiling": true, - "height": 256 + "has_ceiling": true } } - ], - "type": "minecraft:dimension_type" -} \ No newline at end of file + ] +} diff --git a/Obsidian/Assets/items.json b/Obsidian/Assets/items.json index 2eabd7b30..198bc3866 100644 --- a/Obsidian/Assets/items.json +++ b/Obsidian/Assets/items.json @@ -1,75 +1,75 @@ { "minecraft:acacia_boat": { - "protocol_id": 781 + "protocol_id": 782 }, "minecraft:acacia_button": { - "protocol_id": 687 + "protocol_id": 688 }, "minecraft:acacia_chest_boat": { - "protocol_id": 782 + "protocol_id": 783 }, "minecraft:acacia_door": { - "protocol_id": 714 + "protocol_id": 715 }, "minecraft:acacia_fence": { - "protocol_id": 314 + "protocol_id": 315 }, "minecraft:acacia_fence_gate": { - "protocol_id": 753 + "protocol_id": 754 }, "minecraft:acacia_hanging_sign": { - "protocol_id": 898 + "protocol_id": 901 }, "minecraft:acacia_leaves": { - "protocol_id": 179 + "protocol_id": 180 }, "minecraft:acacia_log": { - "protocol_id": 135 + "protocol_id": 136 }, "minecraft:acacia_planks": { "protocol_id": 40 }, "minecraft:acacia_pressure_plate": { - "protocol_id": 702 + "protocol_id": 703 }, "minecraft:acacia_sapling": { "protocol_id": 52 }, "minecraft:acacia_sign": { - "protocol_id": 887 + "protocol_id": 890 }, "minecraft:acacia_slab": { - "protocol_id": 255 + "protocol_id": 256 }, "minecraft:acacia_stairs": { - "protocol_id": 386 + "protocol_id": 387 }, "minecraft:acacia_trapdoor": { - "protocol_id": 734 + "protocol_id": 735 }, "minecraft:acacia_wood": { - "protocol_id": 169 + "protocol_id": 170 }, "minecraft:activator_rail": { - "protocol_id": 763 + "protocol_id": 764 }, "minecraft:air": { "protocol_id": 0 }, "minecraft:allay_spawn_egg": { - "protocol_id": 1005 + "protocol_id": 1009 }, "minecraft:allium": { - "protocol_id": 220 + "protocol_id": 221 }, "minecraft:amethyst_block": { - "protocol_id": 85 + "protocol_id": 86 }, "minecraft:amethyst_cluster": { - "protocol_id": 1249 + "protocol_id": 1258 }, "minecraft:amethyst_shard": { - "protocol_id": 805 + "protocol_id": 808 }, "minecraft:ancient_debris": { "protocol_id": 80 @@ -78,595 +78,610 @@ "protocol_id": 6 }, "minecraft:andesite_slab": { - "protocol_id": 647 + "protocol_id": 648 }, "minecraft:andesite_stairs": { - "protocol_id": 630 + "protocol_id": 631 }, "minecraft:andesite_wall": { - "protocol_id": 406 + "protocol_id": 407 }, "minecraft:angler_pottery_sherd": { - "protocol_id": 1274 + "protocol_id": 1285 }, "minecraft:anvil": { - "protocol_id": 418 + "protocol_id": 419 }, "minecraft:apple": { - "protocol_id": 796 + "protocol_id": 799 }, "minecraft:archer_pottery_sherd": { - "protocol_id": 1275 + "protocol_id": 1286 + }, + "minecraft:armadillo_scute": { + "protocol_id": 796 + }, + "minecraft:armadillo_spawn_egg": { + "protocol_id": 1008 }, "minecraft:armor_stand": { - "protocol_id": 1116 + "protocol_id": 1123 }, "minecraft:arms_up_pottery_sherd": { - "protocol_id": 1276 + "protocol_id": 1287 }, "minecraft:arrow": { - "protocol_id": 798 + "protocol_id": 801 }, "minecraft:axolotl_bucket": { - "protocol_id": 916 + "protocol_id": 919 }, "minecraft:axolotl_spawn_egg": { - "protocol_id": 1006 + "protocol_id": 1010 }, "minecraft:azalea": { - "protocol_id": 196 + "protocol_id": 197 }, "minecraft:azalea_leaves": { - "protocol_id": 183 + "protocol_id": 184 }, "minecraft:azure_bluet": { - "protocol_id": 221 + "protocol_id": 222 }, "minecraft:baked_potato": { - "protocol_id": 1092 + "protocol_id": 1099 }, "minecraft:bamboo": { - "protocol_id": 250 + "protocol_id": 251 }, "minecraft:bamboo_block": { - "protocol_id": 143 + "protocol_id": 144 }, "minecraft:bamboo_button": { - "protocol_id": 691 + "protocol_id": 692 }, "minecraft:bamboo_chest_raft": { - "protocol_id": 790 + "protocol_id": 791 }, "minecraft:bamboo_door": { - "protocol_id": 718 + "protocol_id": 719 }, "minecraft:bamboo_fence": { - "protocol_id": 318 + "protocol_id": 319 }, "minecraft:bamboo_fence_gate": { - "protocol_id": 757 + "protocol_id": 758 }, "minecraft:bamboo_hanging_sign": { - "protocol_id": 902 + "protocol_id": 905 }, "minecraft:bamboo_mosaic": { "protocol_id": 47 }, "minecraft:bamboo_mosaic_slab": { - "protocol_id": 260 + "protocol_id": 261 }, "minecraft:bamboo_mosaic_stairs": { - "protocol_id": 391 + "protocol_id": 392 }, "minecraft:bamboo_planks": { "protocol_id": 44 }, "minecraft:bamboo_pressure_plate": { - "protocol_id": 706 + "protocol_id": 707 }, "minecraft:bamboo_raft": { - "protocol_id": 789 + "protocol_id": 790 }, "minecraft:bamboo_sign": { - "protocol_id": 891 + "protocol_id": 894 }, "minecraft:bamboo_slab": { - "protocol_id": 259 + "protocol_id": 260 }, "minecraft:bamboo_stairs": { - "protocol_id": 390 + "protocol_id": 391 }, "minecraft:bamboo_trapdoor": { - "protocol_id": 738 + "protocol_id": 739 }, "minecraft:barrel": { - "protocol_id": 1193 + "protocol_id": 1202 }, "minecraft:barrier": { - "protocol_id": 442 + "protocol_id": 443 }, "minecraft:basalt": { - "protocol_id": 327 + "protocol_id": 328 }, "minecraft:bat_spawn_egg": { - "protocol_id": 1007 + "protocol_id": 1011 }, "minecraft:beacon": { - "protocol_id": 395 + "protocol_id": 396 }, "minecraft:bedrock": { "protocol_id": 56 }, "minecraft:bee_nest": { - "protocol_id": 1210 + "protocol_id": 1219 }, "minecraft:bee_spawn_egg": { - "protocol_id": 1008 + "protocol_id": 1012 }, "minecraft:beef": { - "protocol_id": 985 + "protocol_id": 988 }, "minecraft:beehive": { - "protocol_id": 1211 + "protocol_id": 1220 }, "minecraft:beetroot": { - "protocol_id": 1147 + "protocol_id": 1154 }, "minecraft:beetroot_seeds": { - "protocol_id": 1148 + "protocol_id": 1155 }, "minecraft:beetroot_soup": { - "protocol_id": 1149 + "protocol_id": 1156 }, "minecraft:bell": { - "protocol_id": 1201 + "protocol_id": 1210 }, "minecraft:big_dripleaf": { - "protocol_id": 248 + "protocol_id": 249 }, "minecraft:birch_boat": { - "protocol_id": 777 + "protocol_id": 778 }, "minecraft:birch_button": { - "protocol_id": 685 + "protocol_id": 686 }, "minecraft:birch_chest_boat": { - "protocol_id": 778 + "protocol_id": 779 }, "minecraft:birch_door": { - "protocol_id": 712 + "protocol_id": 713 }, "minecraft:birch_fence": { - "protocol_id": 312 + "protocol_id": 313 }, "minecraft:birch_fence_gate": { - "protocol_id": 751 + "protocol_id": 752 }, "minecraft:birch_hanging_sign": { - "protocol_id": 896 + "protocol_id": 899 }, "minecraft:birch_leaves": { - "protocol_id": 177 + "protocol_id": 178 }, "minecraft:birch_log": { - "protocol_id": 133 + "protocol_id": 134 }, "minecraft:birch_planks": { "protocol_id": 38 }, "minecraft:birch_pressure_plate": { - "protocol_id": 700 + "protocol_id": 701 }, "minecraft:birch_sapling": { "protocol_id": 50 }, "minecraft:birch_sign": { - "protocol_id": 885 + "protocol_id": 888 }, "minecraft:birch_slab": { - "protocol_id": 253 + "protocol_id": 254 }, "minecraft:birch_stairs": { - "protocol_id": 384 + "protocol_id": 385 }, "minecraft:birch_trapdoor": { - "protocol_id": 732 + "protocol_id": 733 }, "minecraft:birch_wood": { - "protocol_id": 167 + "protocol_id": 168 }, "minecraft:black_banner": { - "protocol_id": 1141 + "protocol_id": 1148 }, "minecraft:black_bed": { - "protocol_id": 976 + "protocol_id": 979 }, "minecraft:black_candle": { - "protocol_id": 1245 + "protocol_id": 1254 }, "minecraft:black_carpet": { - "protocol_id": 460 + "protocol_id": 461 }, "minecraft:black_concrete": { - "protocol_id": 569 + "protocol_id": 570 }, "minecraft:black_concrete_powder": { - "protocol_id": 585 + "protocol_id": 586 }, "minecraft:black_dye": { - "protocol_id": 956 + "protocol_id": 959 }, "minecraft:black_glazed_terracotta": { - "protocol_id": 553 + "protocol_id": 554 }, "minecraft:black_shulker_box": { - "protocol_id": 537 + "protocol_id": 538 }, "minecraft:black_stained_glass": { - "protocol_id": 485 + "protocol_id": 486 }, "minecraft:black_stained_glass_pane": { - "protocol_id": 501 + "protocol_id": 502 }, "minecraft:black_terracotta": { - "protocol_id": 441 + "protocol_id": 442 }, "minecraft:black_wool": { - "protocol_id": 216 + "protocol_id": 217 }, "minecraft:blackstone": { - "protocol_id": 1216 + "protocol_id": 1225 }, "minecraft:blackstone_slab": { - "protocol_id": 1217 + "protocol_id": 1226 }, "minecraft:blackstone_stairs": { - "protocol_id": 1218 + "protocol_id": 1227 }, "minecraft:blackstone_wall": { - "protocol_id": 411 + "protocol_id": 412 }, "minecraft:blade_pottery_sherd": { - "protocol_id": 1277 + "protocol_id": 1288 }, "minecraft:blast_furnace": { - "protocol_id": 1195 + "protocol_id": 1204 }, "minecraft:blaze_powder": { - "protocol_id": 999 + "protocol_id": 1002 }, "minecraft:blaze_rod": { - "protocol_id": 991 + "protocol_id": 994 }, "minecraft:blaze_spawn_egg": { - "protocol_id": 1009 + "protocol_id": 1013 }, "minecraft:blue_banner": { - "protocol_id": 1137 + "protocol_id": 1144 }, "minecraft:blue_bed": { - "protocol_id": 972 + "protocol_id": 975 }, "minecraft:blue_candle": { - "protocol_id": 1241 + "protocol_id": 1250 }, "minecraft:blue_carpet": { - "protocol_id": 456 + "protocol_id": 457 }, "minecraft:blue_concrete": { - "protocol_id": 565 + "protocol_id": 566 }, "minecraft:blue_concrete_powder": { - "protocol_id": 581 + "protocol_id": 582 }, "minecraft:blue_dye": { - "protocol_id": 952 + "protocol_id": 955 }, "minecraft:blue_glazed_terracotta": { - "protocol_id": 549 + "protocol_id": 550 }, "minecraft:blue_ice": { - "protocol_id": 618 + "protocol_id": 619 }, "minecraft:blue_orchid": { - "protocol_id": 219 + "protocol_id": 220 }, "minecraft:blue_shulker_box": { - "protocol_id": 533 + "protocol_id": 534 }, "minecraft:blue_stained_glass": { - "protocol_id": 481 + "protocol_id": 482 }, "minecraft:blue_stained_glass_pane": { - "protocol_id": 497 + "protocol_id": 498 }, "minecraft:blue_terracotta": { - "protocol_id": 437 + "protocol_id": 438 }, "minecraft:blue_wool": { - "protocol_id": 212 + "protocol_id": 213 + }, + "minecraft:bogged_spawn_egg": { + "protocol_id": 1014 + }, + "minecraft:bolt_armor_trim_smithing_template": { + "protocol_id": 1284 }, "minecraft:bone": { - "protocol_id": 958 + "protocol_id": 961 }, "minecraft:bone_block": { - "protocol_id": 519 + "protocol_id": 520 }, "minecraft:bone_meal": { - "protocol_id": 957 + "protocol_id": 960 }, "minecraft:book": { - "protocol_id": 922 + "protocol_id": 925 }, "minecraft:bookshelf": { - "protocol_id": 285 + "protocol_id": 286 }, "minecraft:bow": { - "protocol_id": 797 + "protocol_id": 800 }, "minecraft:bowl": { - "protocol_id": 845 + "protocol_id": 848 }, "minecraft:brain_coral": { - "protocol_id": 599 + "protocol_id": 600 }, "minecraft:brain_coral_block": { - "protocol_id": 594 + "protocol_id": 595 }, "minecraft:brain_coral_fan": { - "protocol_id": 609 + "protocol_id": 610 }, "minecraft:bread": { - "protocol_id": 852 + "protocol_id": 855 + }, + "minecraft:breeze_rod": { + "protocol_id": 1329 }, "minecraft:breeze_spawn_egg": { - "protocol_id": 1010 + "protocol_id": 1015 }, "minecraft:brewer_pottery_sherd": { - "protocol_id": 1278 + "protocol_id": 1289 }, "minecraft:brewing_stand": { - "protocol_id": 1001 + "protocol_id": 1004 }, "minecraft:brick": { - "protocol_id": 918 + "protocol_id": 921 }, "minecraft:brick_slab": { - "protocol_id": 269 + "protocol_id": 270 }, "minecraft:brick_stairs": { - "protocol_id": 360 + "protocol_id": 361 }, "minecraft:brick_wall": { - "protocol_id": 398 + "protocol_id": 399 }, "minecraft:bricks": { - "protocol_id": 284 + "protocol_id": 285 }, "minecraft:brown_banner": { - "protocol_id": 1138 + "protocol_id": 1145 }, "minecraft:brown_bed": { - "protocol_id": 973 + "protocol_id": 976 }, "minecraft:brown_candle": { - "protocol_id": 1242 + "protocol_id": 1251 }, "minecraft:brown_carpet": { - "protocol_id": 457 + "protocol_id": 458 }, "minecraft:brown_concrete": { - "protocol_id": 566 + "protocol_id": 567 }, "minecraft:brown_concrete_powder": { - "protocol_id": 582 + "protocol_id": 583 }, "minecraft:brown_dye": { - "protocol_id": 953 + "protocol_id": 956 }, "minecraft:brown_glazed_terracotta": { - "protocol_id": 550 + "protocol_id": 551 }, "minecraft:brown_mushroom": { - "protocol_id": 233 + "protocol_id": 234 }, "minecraft:brown_mushroom_block": { - "protocol_id": 351 + "protocol_id": 352 }, "minecraft:brown_shulker_box": { - "protocol_id": 534 + "protocol_id": 535 }, "minecraft:brown_stained_glass": { - "protocol_id": 482 + "protocol_id": 483 }, "minecraft:brown_stained_glass_pane": { - "protocol_id": 498 + "protocol_id": 499 }, "minecraft:brown_terracotta": { - "protocol_id": 438 + "protocol_id": 439 }, "minecraft:brown_wool": { - "protocol_id": 213 + "protocol_id": 214 }, "minecraft:brush": { - "protocol_id": 1256 + "protocol_id": 1265 }, "minecraft:bubble_coral": { - "protocol_id": 600 + "protocol_id": 601 }, "minecraft:bubble_coral_block": { - "protocol_id": 595 + "protocol_id": 596 }, "minecraft:bubble_coral_fan": { - "protocol_id": 610 + "protocol_id": 611 }, "minecraft:bucket": { - "protocol_id": 905 + "protocol_id": 908 }, "minecraft:budding_amethyst": { - "protocol_id": 86 + "protocol_id": 87 }, "minecraft:bundle": { - "protocol_id": 927 + "protocol_id": 930 }, "minecraft:burn_pottery_sherd": { - "protocol_id": 1279 + "protocol_id": 1290 }, "minecraft:cactus": { - "protocol_id": 307 + "protocol_id": 308 }, "minecraft:cake": { - "protocol_id": 960 + "protocol_id": 963 }, "minecraft:calcite": { "protocol_id": 11 }, "minecraft:calibrated_sculk_sensor": { - "protocol_id": 675 + "protocol_id": 676 }, "minecraft:camel_spawn_egg": { - "protocol_id": 1012 + "protocol_id": 1017 }, "minecraft:campfire": { - "protocol_id": 1206 + "protocol_id": 1215 }, "minecraft:candle": { - "protocol_id": 1229 + "protocol_id": 1238 }, "minecraft:carrot": { - "protocol_id": 1090 + "protocol_id": 1097 }, "minecraft:carrot_on_a_stick": { - "protocol_id": 770 + "protocol_id": 771 }, "minecraft:cartography_table": { - "protocol_id": 1196 + "protocol_id": 1205 }, "minecraft:carved_pumpkin": { - "protocol_id": 322 + "protocol_id": 323 }, "minecraft:cat_spawn_egg": { - "protocol_id": 1011 + "protocol_id": 1016 }, "minecraft:cauldron": { - "protocol_id": 1002 + "protocol_id": 1005 }, "minecraft:cave_spider_spawn_egg": { - "protocol_id": 1013 + "protocol_id": 1018 }, "minecraft:chain": { - "protocol_id": 355 + "protocol_id": 356 }, "minecraft:chain_command_block": { - "protocol_id": 514 + "protocol_id": 515 }, "minecraft:chainmail_boots": { - "protocol_id": 860 + "protocol_id": 863 }, "minecraft:chainmail_chestplate": { - "protocol_id": 858 + "protocol_id": 861 }, "minecraft:chainmail_helmet": { - "protocol_id": 857 + "protocol_id": 860 }, "minecraft:chainmail_leggings": { - "protocol_id": 859 + "protocol_id": 862 }, "minecraft:charcoal": { - "protocol_id": 800 + "protocol_id": 803 }, "minecraft:cherry_boat": { - "protocol_id": 783 + "protocol_id": 784 }, "minecraft:cherry_button": { - "protocol_id": 688 + "protocol_id": 689 }, "minecraft:cherry_chest_boat": { - "protocol_id": 784 + "protocol_id": 785 }, "minecraft:cherry_door": { - "protocol_id": 715 + "protocol_id": 716 }, "minecraft:cherry_fence": { - "protocol_id": 315 + "protocol_id": 316 }, "minecraft:cherry_fence_gate": { - "protocol_id": 754 + "protocol_id": 755 }, "minecraft:cherry_hanging_sign": { - "protocol_id": 899 + "protocol_id": 902 }, "minecraft:cherry_leaves": { - "protocol_id": 180 + "protocol_id": 181 }, "minecraft:cherry_log": { - "protocol_id": 136 + "protocol_id": 137 }, "minecraft:cherry_planks": { "protocol_id": 41 }, "minecraft:cherry_pressure_plate": { - "protocol_id": 703 + "protocol_id": 704 }, "minecraft:cherry_sapling": { "protocol_id": 53 }, "minecraft:cherry_sign": { - "protocol_id": 888 + "protocol_id": 891 }, "minecraft:cherry_slab": { - "protocol_id": 256 + "protocol_id": 257 }, "minecraft:cherry_stairs": { - "protocol_id": 387 + "protocol_id": 388 }, "minecraft:cherry_trapdoor": { - "protocol_id": 735 + "protocol_id": 736 }, "minecraft:cherry_wood": { - "protocol_id": 170 + "protocol_id": 171 }, "minecraft:chest": { - "protocol_id": 298 + "protocol_id": 299 }, "minecraft:chest_minecart": { - "protocol_id": 766 + "protocol_id": 767 }, "minecraft:chicken": { - "protocol_id": 987 + "protocol_id": 990 }, "minecraft:chicken_spawn_egg": { - "protocol_id": 1014 + "protocol_id": 1019 }, "minecraft:chipped_anvil": { - "protocol_id": 419 + "protocol_id": 420 }, "minecraft:chiseled_bookshelf": { - "protocol_id": 286 + "protocol_id": 287 }, "minecraft:chiseled_copper": { - "protocol_id": 95 + "protocol_id": 96 }, "minecraft:chiseled_deepslate": { - "protocol_id": 349 + "protocol_id": 350 }, "minecraft:chiseled_nether_bricks": { - "protocol_id": 367 + "protocol_id": 368 }, "minecraft:chiseled_polished_blackstone": { - "protocol_id": 1223 + "protocol_id": 1232 }, "minecraft:chiseled_quartz_block": { - "protocol_id": 421 + "protocol_id": 422 }, "minecraft:chiseled_red_sandstone": { - "protocol_id": 510 + "protocol_id": 511 }, "minecraft:chiseled_sandstone": { - "protocol_id": 191 + "protocol_id": 192 }, "minecraft:chiseled_stone_bricks": { - "protocol_id": 342 + "protocol_id": 343 }, "minecraft:chiseled_tuff": { "protocol_id": 16 @@ -675,25 +690,25 @@ "protocol_id": 25 }, "minecraft:chorus_flower": { - "protocol_id": 293 + "protocol_id": 294 }, "minecraft:chorus_fruit": { - "protocol_id": 1143 + "protocol_id": 1150 }, "minecraft:chorus_plant": { - "protocol_id": 292 + "protocol_id": 293 }, "minecraft:clay": { - "protocol_id": 308 + "protocol_id": 309 }, "minecraft:clay_ball": { - "protocol_id": 919 + "protocol_id": 922 }, "minecraft:clock": { - "protocol_id": 929 + "protocol_id": 932 }, "minecraft:coal": { - "protocol_id": 799 + "protocol_id": 802 }, "minecraft:coal_block": { "protocol_id": 81 @@ -705,166 +720,166 @@ "protocol_id": 29 }, "minecraft:coast_armor_trim_smithing_template": { - "protocol_id": 1260 + "protocol_id": 1269 }, "minecraft:cobbled_deepslate": { "protocol_id": 9 }, "minecraft:cobbled_deepslate_slab": { - "protocol_id": 651 + "protocol_id": 652 }, "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 634 + "protocol_id": 635 }, "minecraft:cobbled_deepslate_wall": { - "protocol_id": 414 + "protocol_id": 415 }, "minecraft:cobblestone": { "protocol_id": 35 }, "minecraft:cobblestone_slab": { - "protocol_id": 268 + "protocol_id": 269 }, "minecraft:cobblestone_stairs": { - "protocol_id": 303 + "protocol_id": 304 }, "minecraft:cobblestone_wall": { - "protocol_id": 396 + "protocol_id": 397 }, "minecraft:cobweb": { - "protocol_id": 193 + "protocol_id": 194 }, "minecraft:cocoa_beans": { - "protocol_id": 940 + "protocol_id": 943 }, "minecraft:cod": { - "protocol_id": 932 + "protocol_id": 935 }, "minecraft:cod_bucket": { - "protocol_id": 914 + "protocol_id": 917 }, "minecraft:cod_spawn_egg": { - "protocol_id": 1015 + "protocol_id": 1020 }, "minecraft:command_block": { - "protocol_id": 394 + "protocol_id": 395 }, "minecraft:command_block_minecart": { - "protocol_id": 1123 + "protocol_id": 1130 }, "minecraft:comparator": { - "protocol_id": 660 + "protocol_id": 661 }, "minecraft:compass": { - "protocol_id": 925 + "protocol_id": 928 }, "minecraft:composter": { - "protocol_id": 1192 + "protocol_id": 1201 }, "minecraft:conduit": { - "protocol_id": 619 + "protocol_id": 620 }, "minecraft:cooked_beef": { - "protocol_id": 986 + "protocol_id": 989 }, "minecraft:cooked_chicken": { - "protocol_id": 988 + "protocol_id": 991 }, "minecraft:cooked_cod": { - "protocol_id": 936 + "protocol_id": 939 }, "minecraft:cooked_mutton": { - "protocol_id": 1125 + "protocol_id": 1132 }, "minecraft:cooked_porkchop": { - "protocol_id": 879 + "protocol_id": 882 }, "minecraft:cooked_rabbit": { - "protocol_id": 1112 + "protocol_id": 1119 }, "minecraft:cooked_salmon": { - "protocol_id": 937 + "protocol_id": 940 }, "minecraft:cookie": { - "protocol_id": 977 + "protocol_id": 980 }, "minecraft:copper_block": { - "protocol_id": 88 + "protocol_id": 89 }, "minecraft:copper_bulb": { - "protocol_id": 1302 + "protocol_id": 1316 }, "minecraft:copper_door": { - "protocol_id": 721 + "protocol_id": 722 }, "minecraft:copper_grate": { - "protocol_id": 1294 + "protocol_id": 1308 }, "minecraft:copper_ingot": { - "protocol_id": 809 + "protocol_id": 812 }, "minecraft:copper_ore": { "protocol_id": 66 }, "minecraft:copper_trapdoor": { - "protocol_id": 741 + "protocol_id": 742 }, "minecraft:cornflower": { - "protocol_id": 227 + "protocol_id": 228 }, "minecraft:cow_spawn_egg": { - "protocol_id": 1016 + "protocol_id": 1021 }, "minecraft:cracked_deepslate_bricks": { - "protocol_id": 346 + "protocol_id": 347 }, "minecraft:cracked_deepslate_tiles": { - "protocol_id": 348 + "protocol_id": 349 }, "minecraft:cracked_nether_bricks": { - "protocol_id": 366 + "protocol_id": 367 }, "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 1227 + "protocol_id": 1236 }, "minecraft:cracked_stone_bricks": { - "protocol_id": 341 + "protocol_id": 342 }, "minecraft:crafter": { - "protocol_id": 978 + "protocol_id": 981 }, "minecraft:crafting_table": { - "protocol_id": 299 + "protocol_id": 300 }, "minecraft:creeper_banner_pattern": { - "protocol_id": 1186 + "protocol_id": 1193 }, "minecraft:creeper_head": { - "protocol_id": 1100 + "protocol_id": 1107 }, "minecraft:creeper_spawn_egg": { - "protocol_id": 1017 + "protocol_id": 1022 }, "minecraft:crimson_button": { - "protocol_id": 692 + "protocol_id": 693 }, "minecraft:crimson_door": { - "protocol_id": 719 + "protocol_id": 720 }, "minecraft:crimson_fence": { - "protocol_id": 319 + "protocol_id": 320 }, "minecraft:crimson_fence_gate": { - "protocol_id": 758 + "protocol_id": 759 }, "minecraft:crimson_fungus": { - "protocol_id": 235 + "protocol_id": 236 }, "minecraft:crimson_hanging_sign": { - "protocol_id": 903 + "protocol_id": 906 }, "minecraft:crimson_hyphae": { - "protocol_id": 173 + "protocol_id": 174 }, "minecraft:crimson_nylium": { "protocol_id": 33 @@ -873,232 +888,232 @@ "protocol_id": 45 }, "minecraft:crimson_pressure_plate": { - "protocol_id": 707 + "protocol_id": 708 }, "minecraft:crimson_roots": { - "protocol_id": 237 + "protocol_id": 238 }, "minecraft:crimson_sign": { - "protocol_id": 892 + "protocol_id": 895 }, "minecraft:crimson_slab": { - "protocol_id": 261 + "protocol_id": 262 }, "minecraft:crimson_stairs": { - "protocol_id": 392 + "protocol_id": 393 }, "minecraft:crimson_stem": { - "protocol_id": 141 + "protocol_id": 142 }, "minecraft:crimson_trapdoor": { - "protocol_id": 739 + "protocol_id": 740 }, "minecraft:crossbow": { - "protocol_id": 1182 + "protocol_id": 1189 }, "minecraft:crying_obsidian": { - "protocol_id": 1215 + "protocol_id": 1224 }, "minecraft:cut_copper": { - "protocol_id": 99 + "protocol_id": 100 }, "minecraft:cut_copper_slab": { - "protocol_id": 107 + "protocol_id": 108 }, "minecraft:cut_copper_stairs": { - "protocol_id": 103 + "protocol_id": 104 }, "minecraft:cut_red_sandstone": { - "protocol_id": 511 + "protocol_id": 512 }, "minecraft:cut_red_sandstone_slab": { - "protocol_id": 275 + "protocol_id": 276 }, "minecraft:cut_sandstone": { - "protocol_id": 192 + "protocol_id": 193 }, "minecraft:cut_sandstone_slab": { - "protocol_id": 266 + "protocol_id": 267 }, "minecraft:cyan_banner": { - "protocol_id": 1135 + "protocol_id": 1142 }, "minecraft:cyan_bed": { - "protocol_id": 970 + "protocol_id": 973 }, "minecraft:cyan_candle": { - "protocol_id": 1239 + "protocol_id": 1248 }, "minecraft:cyan_carpet": { - "protocol_id": 454 + "protocol_id": 455 }, "minecraft:cyan_concrete": { - "protocol_id": 563 + "protocol_id": 564 }, "minecraft:cyan_concrete_powder": { - "protocol_id": 579 + "protocol_id": 580 }, "minecraft:cyan_dye": { - "protocol_id": 950 + "protocol_id": 953 }, "minecraft:cyan_glazed_terracotta": { - "protocol_id": 547 + "protocol_id": 548 }, "minecraft:cyan_shulker_box": { - "protocol_id": 531 + "protocol_id": 532 }, "minecraft:cyan_stained_glass": { - "protocol_id": 479 + "protocol_id": 480 }, "minecraft:cyan_stained_glass_pane": { - "protocol_id": 495 + "protocol_id": 496 }, "minecraft:cyan_terracotta": { - "protocol_id": 435 + "protocol_id": 436 }, "minecraft:cyan_wool": { - "protocol_id": 210 + "protocol_id": 211 }, "minecraft:damaged_anvil": { - "protocol_id": 420 + "protocol_id": 421 }, "minecraft:dandelion": { - "protocol_id": 217 + "protocol_id": 218 }, "minecraft:danger_pottery_sherd": { - "protocol_id": 1280 + "protocol_id": 1291 }, "minecraft:dark_oak_boat": { - "protocol_id": 785 + "protocol_id": 786 }, "minecraft:dark_oak_button": { - "protocol_id": 689 + "protocol_id": 690 }, "minecraft:dark_oak_chest_boat": { - "protocol_id": 786 + "protocol_id": 787 }, "minecraft:dark_oak_door": { - "protocol_id": 716 + "protocol_id": 717 }, "minecraft:dark_oak_fence": { - "protocol_id": 316 + "protocol_id": 317 }, "minecraft:dark_oak_fence_gate": { - "protocol_id": 755 + "protocol_id": 756 }, "minecraft:dark_oak_hanging_sign": { - "protocol_id": 900 + "protocol_id": 903 }, "minecraft:dark_oak_leaves": { - "protocol_id": 181 + "protocol_id": 182 }, "minecraft:dark_oak_log": { - "protocol_id": 137 + "protocol_id": 138 }, "minecraft:dark_oak_planks": { "protocol_id": 42 }, "minecraft:dark_oak_pressure_plate": { - "protocol_id": 704 + "protocol_id": 705 }, "minecraft:dark_oak_sapling": { "protocol_id": 54 }, "minecraft:dark_oak_sign": { - "protocol_id": 889 + "protocol_id": 892 }, "minecraft:dark_oak_slab": { - "protocol_id": 257 + "protocol_id": 258 }, "minecraft:dark_oak_stairs": { - "protocol_id": 388 + "protocol_id": 389 }, "minecraft:dark_oak_trapdoor": { - "protocol_id": 736 + "protocol_id": 737 }, "minecraft:dark_oak_wood": { - "protocol_id": 171 + "protocol_id": 172 }, "minecraft:dark_prismarine": { - "protocol_id": 504 + "protocol_id": 505 }, "minecraft:dark_prismarine_slab": { - "protocol_id": 279 + "protocol_id": 280 }, "minecraft:dark_prismarine_stairs": { - "protocol_id": 507 + "protocol_id": 508 }, "minecraft:daylight_detector": { - "protocol_id": 673 + "protocol_id": 674 }, "minecraft:dead_brain_coral": { - "protocol_id": 603 + "protocol_id": 604 }, "minecraft:dead_brain_coral_block": { - "protocol_id": 589 + "protocol_id": 590 }, "minecraft:dead_brain_coral_fan": { - "protocol_id": 614 + "protocol_id": 615 }, "minecraft:dead_bubble_coral": { - "protocol_id": 604 + "protocol_id": 605 }, "minecraft:dead_bubble_coral_block": { - "protocol_id": 590 + "protocol_id": 591 }, "minecraft:dead_bubble_coral_fan": { - "protocol_id": 615 + "protocol_id": 616 }, "minecraft:dead_bush": { - "protocol_id": 198 + "protocol_id": 199 }, "minecraft:dead_fire_coral": { - "protocol_id": 605 + "protocol_id": 606 }, "minecraft:dead_fire_coral_block": { - "protocol_id": 591 + "protocol_id": 592 }, "minecraft:dead_fire_coral_fan": { - "protocol_id": 616 + "protocol_id": 617 }, "minecraft:dead_horn_coral": { - "protocol_id": 606 + "protocol_id": 607 }, "minecraft:dead_horn_coral_block": { - "protocol_id": 592 + "protocol_id": 593 }, "minecraft:dead_horn_coral_fan": { - "protocol_id": 617 + "protocol_id": 618 }, "minecraft:dead_tube_coral": { - "protocol_id": 607 + "protocol_id": 608 }, "minecraft:dead_tube_coral_block": { - "protocol_id": 588 + "protocol_id": 589 }, "minecraft:dead_tube_coral_fan": { - "protocol_id": 613 + "protocol_id": 614 }, "minecraft:debug_stick": { - "protocol_id": 1160 + "protocol_id": 1167 }, "minecraft:decorated_pot": { - "protocol_id": 287 + "protocol_id": 288 }, "minecraft:deepslate": { "protocol_id": 8 }, "minecraft:deepslate_brick_slab": { - "protocol_id": 653 + "protocol_id": 654 }, "minecraft:deepslate_brick_stairs": { - "protocol_id": 636 + "protocol_id": 637 }, "minecraft:deepslate_brick_wall": { - "protocol_id": 416 + "protocol_id": 417 }, "minecraft:deepslate_bricks": { - "protocol_id": 345 + "protocol_id": 346 }, "minecraft:deepslate_coal_ore": { "protocol_id": 63 @@ -1125,412 +1140,421 @@ "protocol_id": 71 }, "minecraft:deepslate_tile_slab": { - "protocol_id": 654 + "protocol_id": 655 }, "minecraft:deepslate_tile_stairs": { - "protocol_id": 637 + "protocol_id": 638 }, "minecraft:deepslate_tile_wall": { - "protocol_id": 417 + "protocol_id": 418 }, "minecraft:deepslate_tiles": { - "protocol_id": 347 + "protocol_id": 348 }, "minecraft:detector_rail": { - "protocol_id": 761 + "protocol_id": 762 }, "minecraft:diamond": { - "protocol_id": 801 + "protocol_id": 804 }, "minecraft:diamond_axe": { - "protocol_id": 837 + "protocol_id": 840 }, "minecraft:diamond_block": { - "protocol_id": 90 + "protocol_id": 91 }, "minecraft:diamond_boots": { - "protocol_id": 868 + "protocol_id": 871 }, "minecraft:diamond_chestplate": { - "protocol_id": 866 + "protocol_id": 869 }, "minecraft:diamond_helmet": { - "protocol_id": 865 + "protocol_id": 868 }, "minecraft:diamond_hoe": { - "protocol_id": 838 + "protocol_id": 841 }, "minecraft:diamond_horse_armor": { - "protocol_id": 1119 + "protocol_id": 1126 }, "minecraft:diamond_leggings": { - "protocol_id": 867 + "protocol_id": 870 }, "minecraft:diamond_ore": { "protocol_id": 76 }, "minecraft:diamond_pickaxe": { - "protocol_id": 836 + "protocol_id": 839 }, "minecraft:diamond_shovel": { - "protocol_id": 835 + "protocol_id": 838 }, "minecraft:diamond_sword": { - "protocol_id": 834 + "protocol_id": 837 }, "minecraft:diorite": { "protocol_id": 4 }, "minecraft:diorite_slab": { - "protocol_id": 650 + "protocol_id": 651 }, "minecraft:diorite_stairs": { - "protocol_id": 633 + "protocol_id": 634 }, "minecraft:diorite_wall": { - "protocol_id": 410 + "protocol_id": 411 }, "minecraft:dirt": { "protocol_id": 28 }, "minecraft:dirt_path": { - "protocol_id": 463 + "protocol_id": 464 }, "minecraft:disc_fragment_5": { - "protocol_id": 1177 + "protocol_id": 1184 }, "minecraft:dispenser": { - "protocol_id": 667 + "protocol_id": 668 }, "minecraft:dolphin_spawn_egg": { - "protocol_id": 1018 + "protocol_id": 1023 }, "minecraft:donkey_spawn_egg": { - "protocol_id": 1019 + "protocol_id": 1024 }, "minecraft:dragon_breath": { - "protocol_id": 1150 + "protocol_id": 1157 }, "minecraft:dragon_egg": { - "protocol_id": 378 + "protocol_id": 379 }, "minecraft:dragon_head": { - "protocol_id": 1101 + "protocol_id": 1108 }, "minecraft:dried_kelp": { - "protocol_id": 982 + "protocol_id": 985 }, "minecraft:dried_kelp_block": { - "protocol_id": 920 + "protocol_id": 923 }, "minecraft:dripstone_block": { "protocol_id": 26 }, "minecraft:dropper": { - "protocol_id": 668 + "protocol_id": 669 }, "minecraft:drowned_spawn_egg": { - "protocol_id": 1020 + "protocol_id": 1025 }, "minecraft:dune_armor_trim_smithing_template": { - "protocol_id": 1259 + "protocol_id": 1268 }, "minecraft:echo_shard": { - "protocol_id": 1255 + "protocol_id": 1264 }, "minecraft:egg": { - "protocol_id": 924 + "protocol_id": 927 }, "minecraft:elder_guardian_spawn_egg": { - "protocol_id": 1021 + "protocol_id": 1026 }, "minecraft:elytra": { - "protocol_id": 772 + "protocol_id": 773 }, "minecraft:emerald": { - "protocol_id": 802 + "protocol_id": 805 }, "minecraft:emerald_block": { - "protocol_id": 381 + "protocol_id": 382 }, "minecraft:emerald_ore": { "protocol_id": 72 }, "minecraft:enchanted_book": { - "protocol_id": 1107 + "protocol_id": 1114 }, "minecraft:enchanted_golden_apple": { - "protocol_id": 882 + "protocol_id": 885 }, "minecraft:enchanting_table": { - "protocol_id": 374 + "protocol_id": 375 }, "minecraft:end_crystal": { - "protocol_id": 1142 + "protocol_id": 1149 }, "minecraft:end_portal_frame": { - "protocol_id": 375 + "protocol_id": 376 }, "minecraft:end_rod": { - "protocol_id": 291 + "protocol_id": 292 }, "minecraft:end_stone": { - "protocol_id": 376 + "protocol_id": 377 }, "minecraft:end_stone_brick_slab": { - "protocol_id": 643 + "protocol_id": 644 }, "minecraft:end_stone_brick_stairs": { - "protocol_id": 625 + "protocol_id": 626 }, "minecraft:end_stone_brick_wall": { - "protocol_id": 409 + "protocol_id": 410 }, "minecraft:end_stone_bricks": { - "protocol_id": 377 + "protocol_id": 378 }, "minecraft:ender_chest": { - "protocol_id": 380 + "protocol_id": 381 }, "minecraft:ender_dragon_spawn_egg": { - "protocol_id": 1022 + "protocol_id": 1027 }, "minecraft:ender_eye": { - "protocol_id": 1003 + "protocol_id": 1006 }, "minecraft:ender_pearl": { - "protocol_id": 990 + "protocol_id": 993 }, "minecraft:enderman_spawn_egg": { - "protocol_id": 1023 + "protocol_id": 1028 }, "minecraft:endermite_spawn_egg": { - "protocol_id": 1024 + "protocol_id": 1029 }, "minecraft:evoker_spawn_egg": { - "protocol_id": 1025 + "protocol_id": 1030 }, "minecraft:experience_bottle": { - "protocol_id": 1083 + "protocol_id": 1088 }, "minecraft:explorer_pottery_sherd": { - "protocol_id": 1281 + "protocol_id": 1292 }, "minecraft:exposed_chiseled_copper": { - "protocol_id": 96 + "protocol_id": 97 }, "minecraft:exposed_copper": { - "protocol_id": 92 + "protocol_id": 93 }, "minecraft:exposed_copper_bulb": { - "protocol_id": 1303 + "protocol_id": 1317 }, "minecraft:exposed_copper_door": { - "protocol_id": 722 + "protocol_id": 723 }, "minecraft:exposed_copper_grate": { - "protocol_id": 1295 + "protocol_id": 1309 }, "minecraft:exposed_copper_trapdoor": { - "protocol_id": 742 + "protocol_id": 743 }, "minecraft:exposed_cut_copper": { - "protocol_id": 100 + "protocol_id": 101 }, "minecraft:exposed_cut_copper_slab": { - "protocol_id": 108 + "protocol_id": 109 }, "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 104 + "protocol_id": 105 }, "minecraft:eye_armor_trim_smithing_template": { - "protocol_id": 1263 + "protocol_id": 1272 }, "minecraft:farmland": { - "protocol_id": 300 + "protocol_id": 301 }, "minecraft:feather": { - "protocol_id": 848 + "protocol_id": 851 }, "minecraft:fermented_spider_eye": { - "protocol_id": 998 + "protocol_id": 1001 }, "minecraft:fern": { - "protocol_id": 195 + "protocol_id": 196 }, "minecraft:filled_map": { - "protocol_id": 979 + "protocol_id": 982 }, "minecraft:fire_charge": { - "protocol_id": 1084 + "protocol_id": 1089 }, "minecraft:fire_coral": { - "protocol_id": 601 + "protocol_id": 602 }, "minecraft:fire_coral_block": { - "protocol_id": 596 + "protocol_id": 597 }, "minecraft:fire_coral_fan": { - "protocol_id": 611 + "protocol_id": 612 }, "minecraft:firework_rocket": { - "protocol_id": 1105 + "protocol_id": 1112 }, "minecraft:firework_star": { - "protocol_id": 1106 + "protocol_id": 1113 }, "minecraft:fishing_rod": { - "protocol_id": 928 + "protocol_id": 931 }, "minecraft:fletching_table": { - "protocol_id": 1197 + "protocol_id": 1206 }, "minecraft:flint": { - "protocol_id": 877 + "protocol_id": 880 }, "minecraft:flint_and_steel": { - "protocol_id": 795 + "protocol_id": 798 + }, + "minecraft:flow_armor_trim_smithing_template": { + "protocol_id": 1283 + }, + "minecraft:flow_banner_pattern": { + "protocol_id": 1198 + }, + "minecraft:flow_pottery_sherd": { + "protocol_id": 1293 }, "minecraft:flower_banner_pattern": { - "protocol_id": 1185 + "protocol_id": 1192 }, "minecraft:flower_pot": { - "protocol_id": 1089 + "protocol_id": 1096 }, "minecraft:flowering_azalea": { - "protocol_id": 197 + "protocol_id": 198 }, "minecraft:flowering_azalea_leaves": { - "protocol_id": 184 + "protocol_id": 185 }, "minecraft:fox_spawn_egg": { - "protocol_id": 1026 + "protocol_id": 1031 }, "minecraft:friend_pottery_sherd": { - "protocol_id": 1282 + "protocol_id": 1294 }, "minecraft:frog_spawn_egg": { - "protocol_id": 1027 + "protocol_id": 1032 }, "minecraft:frogspawn": { - "protocol_id": 1254 + "protocol_id": 1263 }, "minecraft:furnace": { - "protocol_id": 301 + "protocol_id": 302 }, "minecraft:furnace_minecart": { - "protocol_id": 767 + "protocol_id": 768 }, "minecraft:ghast_spawn_egg": { - "protocol_id": 1028 + "protocol_id": 1033 }, "minecraft:ghast_tear": { - "protocol_id": 992 + "protocol_id": 995 }, "minecraft:gilded_blackstone": { - "protocol_id": 1219 + "protocol_id": 1228 }, "minecraft:glass": { - "protocol_id": 187 + "protocol_id": 188 }, "minecraft:glass_bottle": { - "protocol_id": 996 + "protocol_id": 999 }, "minecraft:glass_pane": { - "protocol_id": 356 + "protocol_id": 357 }, "minecraft:glistering_melon_slice": { - "protocol_id": 1004 + "protocol_id": 1007 }, "minecraft:globe_banner_pattern": { - "protocol_id": 1189 + "protocol_id": 1196 }, "minecraft:glow_berries": { - "protocol_id": 1205 + "protocol_id": 1214 }, "minecraft:glow_ink_sac": { - "protocol_id": 939 + "protocol_id": 942 }, "minecraft:glow_item_frame": { - "protocol_id": 1088 + "protocol_id": 1095 }, "minecraft:glow_lichen": { - "protocol_id": 359 + "protocol_id": 360 }, "minecraft:glow_squid_spawn_egg": { - "protocol_id": 1029 + "protocol_id": 1034 }, "minecraft:glowstone": { - "protocol_id": 331 + "protocol_id": 332 }, "minecraft:glowstone_dust": { - "protocol_id": 931 + "protocol_id": 934 }, "minecraft:goat_horn": { - "protocol_id": 1191 + "protocol_id": 1200 }, "minecraft:goat_spawn_egg": { - "protocol_id": 1030 + "protocol_id": 1035 }, "minecraft:gold_block": { - "protocol_id": 89 + "protocol_id": 90 }, "minecraft:gold_ingot": { - "protocol_id": 811 + "protocol_id": 814 }, "minecraft:gold_nugget": { - "protocol_id": 993 + "protocol_id": 996 }, "minecraft:gold_ore": { "protocol_id": 68 }, "minecraft:golden_apple": { - "protocol_id": 881 + "protocol_id": 884 }, "minecraft:golden_axe": { - "protocol_id": 827 + "protocol_id": 830 }, "minecraft:golden_boots": { - "protocol_id": 872 + "protocol_id": 875 }, "minecraft:golden_carrot": { - "protocol_id": 1095 + "protocol_id": 1102 }, "minecraft:golden_chestplate": { - "protocol_id": 870 + "protocol_id": 873 }, "minecraft:golden_helmet": { - "protocol_id": 869 + "protocol_id": 872 }, "minecraft:golden_hoe": { - "protocol_id": 828 + "protocol_id": 831 }, "minecraft:golden_horse_armor": { - "protocol_id": 1118 + "protocol_id": 1125 }, "minecraft:golden_leggings": { - "protocol_id": 871 + "protocol_id": 874 }, "minecraft:golden_pickaxe": { - "protocol_id": 826 + "protocol_id": 829 }, "minecraft:golden_shovel": { - "protocol_id": 825 + "protocol_id": 828 }, "minecraft:golden_sword": { - "protocol_id": 824 + "protocol_id": 827 }, "minecraft:granite": { "protocol_id": 2 }, "minecraft:granite_slab": { - "protocol_id": 646 + "protocol_id": 647 }, "minecraft:granite_stairs": { - "protocol_id": 629 + "protocol_id": 630 }, "minecraft:granite_wall": { - "protocol_id": 402 + "protocol_id": 403 }, "minecraft:grass_block": { "protocol_id": 27 @@ -1539,769 +1563,781 @@ "protocol_id": 61 }, "minecraft:gray_banner": { - "protocol_id": 1133 + "protocol_id": 1140 }, "minecraft:gray_bed": { - "protocol_id": 968 + "protocol_id": 971 }, "minecraft:gray_candle": { - "protocol_id": 1237 + "protocol_id": 1246 }, "minecraft:gray_carpet": { - "protocol_id": 452 + "protocol_id": 453 }, "minecraft:gray_concrete": { - "protocol_id": 561 + "protocol_id": 562 }, "minecraft:gray_concrete_powder": { - "protocol_id": 577 + "protocol_id": 578 }, "minecraft:gray_dye": { - "protocol_id": 948 + "protocol_id": 951 }, "minecraft:gray_glazed_terracotta": { - "protocol_id": 545 + "protocol_id": 546 }, "minecraft:gray_shulker_box": { - "protocol_id": 529 + "protocol_id": 530 }, "minecraft:gray_stained_glass": { - "protocol_id": 477 + "protocol_id": 478 }, "minecraft:gray_stained_glass_pane": { - "protocol_id": 493 + "protocol_id": 494 }, "minecraft:gray_terracotta": { - "protocol_id": 433 + "protocol_id": 434 }, "minecraft:gray_wool": { - "protocol_id": 208 + "protocol_id": 209 }, "minecraft:green_banner": { - "protocol_id": 1139 + "protocol_id": 1146 }, "minecraft:green_bed": { - "protocol_id": 974 + "protocol_id": 977 }, "minecraft:green_candle": { - "protocol_id": 1243 + "protocol_id": 1252 }, "minecraft:green_carpet": { - "protocol_id": 458 + "protocol_id": 459 }, "minecraft:green_concrete": { - "protocol_id": 567 + "protocol_id": 568 }, "minecraft:green_concrete_powder": { - "protocol_id": 583 + "protocol_id": 584 }, "minecraft:green_dye": { - "protocol_id": 954 + "protocol_id": 957 }, "minecraft:green_glazed_terracotta": { - "protocol_id": 551 + "protocol_id": 552 }, "minecraft:green_shulker_box": { - "protocol_id": 535 + "protocol_id": 536 }, "minecraft:green_stained_glass": { - "protocol_id": 483 + "protocol_id": 484 }, "minecraft:green_stained_glass_pane": { - "protocol_id": 499 + "protocol_id": 500 }, "minecraft:green_terracotta": { - "protocol_id": 439 + "protocol_id": 440 }, "minecraft:green_wool": { - "protocol_id": 214 + "protocol_id": 215 }, "minecraft:grindstone": { - "protocol_id": 1198 + "protocol_id": 1207 }, "minecraft:guardian_spawn_egg": { - "protocol_id": 1031 + "protocol_id": 1036 }, "minecraft:gunpowder": { - "protocol_id": 849 + "protocol_id": 852 + }, + "minecraft:guster_banner_pattern": { + "protocol_id": 1199 + }, + "minecraft:guster_pottery_sherd": { + "protocol_id": 1295 }, "minecraft:hanging_roots": { - "protocol_id": 247 + "protocol_id": 248 }, "minecraft:hay_block": { - "protocol_id": 444 + "protocol_id": 445 }, "minecraft:heart_of_the_sea": { - "protocol_id": 1181 + "protocol_id": 1188 }, "minecraft:heart_pottery_sherd": { - "protocol_id": 1283 + "protocol_id": 1296 }, "minecraft:heartbreak_pottery_sherd": { - "protocol_id": 1284 + "protocol_id": 1297 + }, + "minecraft:heavy_core": { + "protocol_id": 85 }, "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 697 + "protocol_id": 698 }, "minecraft:hoglin_spawn_egg": { - "protocol_id": 1032 + "protocol_id": 1037 }, "minecraft:honey_block": { - "protocol_id": 664 + "protocol_id": 665 }, "minecraft:honey_bottle": { - "protocol_id": 1212 + "protocol_id": 1221 }, "minecraft:honeycomb": { - "protocol_id": 1209 + "protocol_id": 1218 }, "minecraft:honeycomb_block": { - "protocol_id": 1213 + "protocol_id": 1222 }, "minecraft:hopper": { - "protocol_id": 666 + "protocol_id": 667 }, "minecraft:hopper_minecart": { - "protocol_id": 769 + "protocol_id": 770 }, "minecraft:horn_coral": { - "protocol_id": 602 + "protocol_id": 603 }, "minecraft:horn_coral_block": { - "protocol_id": 597 + "protocol_id": 598 }, "minecraft:horn_coral_fan": { - "protocol_id": 612 + "protocol_id": 613 }, "minecraft:horse_spawn_egg": { - "protocol_id": 1033 + "protocol_id": 1038 }, "minecraft:host_armor_trim_smithing_template": { - "protocol_id": 1273 + "protocol_id": 1282 }, "minecraft:howl_pottery_sherd": { - "protocol_id": 1285 + "protocol_id": 1298 }, "minecraft:husk_spawn_egg": { - "protocol_id": 1034 + "protocol_id": 1039 }, "minecraft:ice": { - "protocol_id": 305 + "protocol_id": 306 }, "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 337 + "protocol_id": 338 }, "minecraft:infested_cobblestone": { - "protocol_id": 333 + "protocol_id": 334 }, "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 336 + "protocol_id": 337 }, "minecraft:infested_deepslate": { - "protocol_id": 338 + "protocol_id": 339 }, "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 335 + "protocol_id": 336 }, "minecraft:infested_stone": { - "protocol_id": 332 + "protocol_id": 333 }, "minecraft:infested_stone_bricks": { - "protocol_id": 334 + "protocol_id": 335 }, "minecraft:ink_sac": { - "protocol_id": 938 + "protocol_id": 941 }, "minecraft:iron_axe": { - "protocol_id": 832 + "protocol_id": 835 }, "minecraft:iron_bars": { - "protocol_id": 354 + "protocol_id": 355 }, "minecraft:iron_block": { - "protocol_id": 87 + "protocol_id": 88 }, "minecraft:iron_boots": { - "protocol_id": 864 + "protocol_id": 867 }, "minecraft:iron_chestplate": { - "protocol_id": 862 + "protocol_id": 865 }, "minecraft:iron_door": { - "protocol_id": 709 + "protocol_id": 710 }, "minecraft:iron_golem_spawn_egg": { - "protocol_id": 1035 + "protocol_id": 1040 }, "minecraft:iron_helmet": { - "protocol_id": 861 + "protocol_id": 864 }, "minecraft:iron_hoe": { - "protocol_id": 833 + "protocol_id": 836 }, "minecraft:iron_horse_armor": { - "protocol_id": 1117 + "protocol_id": 1124 }, "minecraft:iron_ingot": { - "protocol_id": 807 + "protocol_id": 810 }, "minecraft:iron_leggings": { - "protocol_id": 863 + "protocol_id": 866 }, "minecraft:iron_nugget": { - "protocol_id": 1158 + "protocol_id": 1165 }, "minecraft:iron_ore": { "protocol_id": 64 }, "minecraft:iron_pickaxe": { - "protocol_id": 831 + "protocol_id": 834 }, "minecraft:iron_shovel": { - "protocol_id": 830 + "protocol_id": 833 }, "minecraft:iron_sword": { - "protocol_id": 829 + "protocol_id": 832 }, "minecraft:iron_trapdoor": { - "protocol_id": 729 + "protocol_id": 730 }, "minecraft:item_frame": { - "protocol_id": 1087 + "protocol_id": 1094 }, "minecraft:jack_o_lantern": { - "protocol_id": 323 + "protocol_id": 324 }, "minecraft:jigsaw": { - "protocol_id": 792 + "protocol_id": 793 }, "minecraft:jukebox": { - "protocol_id": 309 + "protocol_id": 310 }, "minecraft:jungle_boat": { - "protocol_id": 779 + "protocol_id": 780 }, "minecraft:jungle_button": { - "protocol_id": 686 + "protocol_id": 687 }, "minecraft:jungle_chest_boat": { - "protocol_id": 780 + "protocol_id": 781 }, "minecraft:jungle_door": { - "protocol_id": 713 + "protocol_id": 714 }, "minecraft:jungle_fence": { - "protocol_id": 313 + "protocol_id": 314 }, "minecraft:jungle_fence_gate": { - "protocol_id": 752 + "protocol_id": 753 }, "minecraft:jungle_hanging_sign": { - "protocol_id": 897 + "protocol_id": 900 }, "minecraft:jungle_leaves": { - "protocol_id": 178 + "protocol_id": 179 }, "minecraft:jungle_log": { - "protocol_id": 134 + "protocol_id": 135 }, "minecraft:jungle_planks": { "protocol_id": 39 }, "minecraft:jungle_pressure_plate": { - "protocol_id": 701 + "protocol_id": 702 }, "minecraft:jungle_sapling": { "protocol_id": 51 }, "minecraft:jungle_sign": { - "protocol_id": 886 + "protocol_id": 889 }, "minecraft:jungle_slab": { - "protocol_id": 254 + "protocol_id": 255 }, "minecraft:jungle_stairs": { - "protocol_id": 385 + "protocol_id": 386 }, "minecraft:jungle_trapdoor": { - "protocol_id": 733 + "protocol_id": 734 }, "minecraft:jungle_wood": { - "protocol_id": 168 + "protocol_id": 169 }, "minecraft:kelp": { - "protocol_id": 243 + "protocol_id": 244 }, "minecraft:knowledge_book": { - "protocol_id": 1159 + "protocol_id": 1166 }, "minecraft:ladder": { - "protocol_id": 302 + "protocol_id": 303 }, "minecraft:lantern": { - "protocol_id": 1202 + "protocol_id": 1211 }, "minecraft:lapis_block": { - "protocol_id": 189 + "protocol_id": 190 }, "minecraft:lapis_lazuli": { - "protocol_id": 803 + "protocol_id": 806 }, "minecraft:lapis_ore": { "protocol_id": 74 }, "minecraft:large_amethyst_bud": { - "protocol_id": 1248 + "protocol_id": 1257 }, "minecraft:large_fern": { - "protocol_id": 469 + "protocol_id": 470 }, "minecraft:lava_bucket": { - "protocol_id": 907 + "protocol_id": 910 }, "minecraft:lead": { - "protocol_id": 1121 + "protocol_id": 1128 }, "minecraft:leather": { - "protocol_id": 910 + "protocol_id": 913 }, "minecraft:leather_boots": { - "protocol_id": 856 + "protocol_id": 859 }, "minecraft:leather_chestplate": { - "protocol_id": 854 + "protocol_id": 857 }, "minecraft:leather_helmet": { - "protocol_id": 853 + "protocol_id": 856 }, "minecraft:leather_horse_armor": { - "protocol_id": 1120 + "protocol_id": 1127 }, "minecraft:leather_leggings": { - "protocol_id": 855 + "protocol_id": 858 }, "minecraft:lectern": { - "protocol_id": 669 + "protocol_id": 670 }, "minecraft:lever": { - "protocol_id": 671 + "protocol_id": 672 }, "minecraft:light": { - "protocol_id": 443 + "protocol_id": 444 }, "minecraft:light_blue_banner": { - "protocol_id": 1129 + "protocol_id": 1136 }, "minecraft:light_blue_bed": { - "protocol_id": 964 + "protocol_id": 967 }, "minecraft:light_blue_candle": { - "protocol_id": 1233 + "protocol_id": 1242 }, "minecraft:light_blue_carpet": { - "protocol_id": 448 + "protocol_id": 449 }, "minecraft:light_blue_concrete": { - "protocol_id": 557 + "protocol_id": 558 }, "minecraft:light_blue_concrete_powder": { - "protocol_id": 573 + "protocol_id": 574 }, "minecraft:light_blue_dye": { - "protocol_id": 944 + "protocol_id": 947 }, "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 541 + "protocol_id": 542 }, "minecraft:light_blue_shulker_box": { - "protocol_id": 525 + "protocol_id": 526 }, "minecraft:light_blue_stained_glass": { - "protocol_id": 473 + "protocol_id": 474 }, "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 489 + "protocol_id": 490 }, "minecraft:light_blue_terracotta": { - "protocol_id": 429 + "protocol_id": 430 }, "minecraft:light_blue_wool": { - "protocol_id": 204 + "protocol_id": 205 }, "minecraft:light_gray_banner": { - "protocol_id": 1134 + "protocol_id": 1141 }, "minecraft:light_gray_bed": { - "protocol_id": 969 + "protocol_id": 972 }, "minecraft:light_gray_candle": { - "protocol_id": 1238 + "protocol_id": 1247 }, "minecraft:light_gray_carpet": { - "protocol_id": 453 + "protocol_id": 454 }, "minecraft:light_gray_concrete": { - "protocol_id": 562 + "protocol_id": 563 }, "minecraft:light_gray_concrete_powder": { - "protocol_id": 578 + "protocol_id": 579 }, "minecraft:light_gray_dye": { - "protocol_id": 949 + "protocol_id": 952 }, "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 546 + "protocol_id": 547 }, "minecraft:light_gray_shulker_box": { - "protocol_id": 530 + "protocol_id": 531 }, "minecraft:light_gray_stained_glass": { - "protocol_id": 478 + "protocol_id": 479 }, "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 494 + "protocol_id": 495 }, "minecraft:light_gray_terracotta": { - "protocol_id": 434 + "protocol_id": 435 }, "minecraft:light_gray_wool": { - "protocol_id": 209 + "protocol_id": 210 }, "minecraft:light_weighted_pressure_plate": { - "protocol_id": 696 + "protocol_id": 697 }, "minecraft:lightning_rod": { - "protocol_id": 672 + "protocol_id": 673 }, "minecraft:lilac": { - "protocol_id": 465 + "protocol_id": 466 }, "minecraft:lily_of_the_valley": { - "protocol_id": 228 + "protocol_id": 229 }, "minecraft:lily_pad": { - "protocol_id": 364 + "protocol_id": 365 }, "minecraft:lime_banner": { - "protocol_id": 1131 + "protocol_id": 1138 }, "minecraft:lime_bed": { - "protocol_id": 966 + "protocol_id": 969 }, "minecraft:lime_candle": { - "protocol_id": 1235 + "protocol_id": 1244 }, "minecraft:lime_carpet": { - "protocol_id": 450 + "protocol_id": 451 }, "minecraft:lime_concrete": { - "protocol_id": 559 + "protocol_id": 560 }, "minecraft:lime_concrete_powder": { - "protocol_id": 575 + "protocol_id": 576 }, "minecraft:lime_dye": { - "protocol_id": 946 + "protocol_id": 949 }, "minecraft:lime_glazed_terracotta": { - "protocol_id": 543 + "protocol_id": 544 }, "minecraft:lime_shulker_box": { - "protocol_id": 527 + "protocol_id": 528 }, "minecraft:lime_stained_glass": { - "protocol_id": 475 + "protocol_id": 476 }, "minecraft:lime_stained_glass_pane": { - "protocol_id": 491 + "protocol_id": 492 }, "minecraft:lime_terracotta": { - "protocol_id": 431 + "protocol_id": 432 }, "minecraft:lime_wool": { - "protocol_id": 206 + "protocol_id": 207 }, "minecraft:lingering_potion": { - "protocol_id": 1154 + "protocol_id": 1161 }, "minecraft:llama_spawn_egg": { - "protocol_id": 1036 + "protocol_id": 1041 }, "minecraft:lodestone": { - "protocol_id": 1214 + "protocol_id": 1223 }, "minecraft:loom": { - "protocol_id": 1184 + "protocol_id": 1191 + }, + "minecraft:mace": { + "protocol_id": 1093 }, "minecraft:magenta_banner": { - "protocol_id": 1128 + "protocol_id": 1135 }, "minecraft:magenta_bed": { - "protocol_id": 963 + "protocol_id": 966 }, "minecraft:magenta_candle": { - "protocol_id": 1232 + "protocol_id": 1241 }, "minecraft:magenta_carpet": { - "protocol_id": 447 + "protocol_id": 448 }, "minecraft:magenta_concrete": { - "protocol_id": 556 + "protocol_id": 557 }, "minecraft:magenta_concrete_powder": { - "protocol_id": 572 + "protocol_id": 573 }, "minecraft:magenta_dye": { - "protocol_id": 943 + "protocol_id": 946 }, "minecraft:magenta_glazed_terracotta": { - "protocol_id": 540 + "protocol_id": 541 }, "minecraft:magenta_shulker_box": { - "protocol_id": 524 + "protocol_id": 525 }, "minecraft:magenta_stained_glass": { - "protocol_id": 472 + "protocol_id": 473 }, "minecraft:magenta_stained_glass_pane": { - "protocol_id": 488 + "protocol_id": 489 }, "minecraft:magenta_terracotta": { - "protocol_id": 428 + "protocol_id": 429 }, "minecraft:magenta_wool": { - "protocol_id": 203 + "protocol_id": 204 }, "minecraft:magma_block": { - "protocol_id": 515 + "protocol_id": 516 }, "minecraft:magma_cream": { - "protocol_id": 1000 + "protocol_id": 1003 }, "minecraft:magma_cube_spawn_egg": { - "protocol_id": 1037 + "protocol_id": 1042 }, "minecraft:mangrove_boat": { - "protocol_id": 787 + "protocol_id": 788 }, "minecraft:mangrove_button": { - "protocol_id": 690 + "protocol_id": 691 }, "minecraft:mangrove_chest_boat": { - "protocol_id": 788 + "protocol_id": 789 }, "minecraft:mangrove_door": { - "protocol_id": 717 + "protocol_id": 718 }, "minecraft:mangrove_fence": { - "protocol_id": 317 + "protocol_id": 318 }, "minecraft:mangrove_fence_gate": { - "protocol_id": 756 + "protocol_id": 757 }, "minecraft:mangrove_hanging_sign": { - "protocol_id": 901 + "protocol_id": 904 }, "minecraft:mangrove_leaves": { - "protocol_id": 182 + "protocol_id": 183 }, "minecraft:mangrove_log": { - "protocol_id": 138 + "protocol_id": 139 }, "minecraft:mangrove_planks": { "protocol_id": 43 }, "minecraft:mangrove_pressure_plate": { - "protocol_id": 705 + "protocol_id": 706 }, "minecraft:mangrove_propagule": { "protocol_id": 55 }, "minecraft:mangrove_roots": { - "protocol_id": 139 + "protocol_id": 140 }, "minecraft:mangrove_sign": { - "protocol_id": 890 + "protocol_id": 893 }, "minecraft:mangrove_slab": { - "protocol_id": 258 + "protocol_id": 259 }, "minecraft:mangrove_stairs": { - "protocol_id": 389 + "protocol_id": 390 }, "minecraft:mangrove_trapdoor": { - "protocol_id": 737 + "protocol_id": 738 }, "minecraft:mangrove_wood": { - "protocol_id": 172 + "protocol_id": 173 }, "minecraft:map": { - "protocol_id": 1094 + "protocol_id": 1101 }, "minecraft:medium_amethyst_bud": { - "protocol_id": 1247 + "protocol_id": 1256 }, "minecraft:melon": { - "protocol_id": 357 + "protocol_id": 358 }, "minecraft:melon_seeds": { - "protocol_id": 984 + "protocol_id": 987 }, "minecraft:melon_slice": { - "protocol_id": 981 + "protocol_id": 984 }, "minecraft:milk_bucket": { - "protocol_id": 911 + "protocol_id": 914 }, "minecraft:minecart": { - "protocol_id": 765 + "protocol_id": 766 }, "minecraft:miner_pottery_sherd": { - "protocol_id": 1286 + "protocol_id": 1299 }, "minecraft:mojang_banner_pattern": { - "protocol_id": 1188 + "protocol_id": 1195 }, "minecraft:mooshroom_spawn_egg": { - "protocol_id": 1038 + "protocol_id": 1043 }, "minecraft:moss_block": { - "protocol_id": 246 + "protocol_id": 247 }, "minecraft:moss_carpet": { - "protocol_id": 244 + "protocol_id": 245 }, "minecraft:mossy_cobblestone": { - "protocol_id": 288 + "protocol_id": 289 }, "minecraft:mossy_cobblestone_slab": { - "protocol_id": 642 + "protocol_id": 643 }, "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 624 + "protocol_id": 625 }, "minecraft:mossy_cobblestone_wall": { - "protocol_id": 397 + "protocol_id": 398 }, "minecraft:mossy_stone_brick_slab": { - "protocol_id": 640 + "protocol_id": 641 }, "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 622 + "protocol_id": 623 }, "minecraft:mossy_stone_brick_wall": { - "protocol_id": 401 + "protocol_id": 402 }, "minecraft:mossy_stone_bricks": { - "protocol_id": 340 + "protocol_id": 341 }, "minecraft:mourner_pottery_sherd": { - "protocol_id": 1287 + "protocol_id": 1300 }, "minecraft:mud": { "protocol_id": 32 }, "minecraft:mud_brick_slab": { - "protocol_id": 271 + "protocol_id": 272 }, "minecraft:mud_brick_stairs": { - "protocol_id": 362 + "protocol_id": 363 }, "minecraft:mud_brick_wall": { - "protocol_id": 404 + "protocol_id": 405 }, "minecraft:mud_bricks": { - "protocol_id": 344 + "protocol_id": 345 }, "minecraft:muddy_mangrove_roots": { - "protocol_id": 140 + "protocol_id": 141 }, "minecraft:mule_spawn_egg": { - "protocol_id": 1039 + "protocol_id": 1044 }, "minecraft:mushroom_stem": { - "protocol_id": 353 + "protocol_id": 354 }, "minecraft:mushroom_stew": { - "protocol_id": 846 + "protocol_id": 849 }, "minecraft:music_disc_11": { - "protocol_id": 1171 + "protocol_id": 1178 }, "minecraft:music_disc_13": { - "protocol_id": 1161 + "protocol_id": 1168 }, "minecraft:music_disc_5": { - "protocol_id": 1175 + "protocol_id": 1182 }, "minecraft:music_disc_blocks": { - "protocol_id": 1163 + "protocol_id": 1170 }, "minecraft:music_disc_cat": { - "protocol_id": 1162 + "protocol_id": 1169 }, "minecraft:music_disc_chirp": { - "protocol_id": 1164 + "protocol_id": 1171 }, "minecraft:music_disc_far": { - "protocol_id": 1165 + "protocol_id": 1172 }, "minecraft:music_disc_mall": { - "protocol_id": 1166 + "protocol_id": 1173 }, "minecraft:music_disc_mellohi": { - "protocol_id": 1167 + "protocol_id": 1174 }, "minecraft:music_disc_otherside": { - "protocol_id": 1173 + "protocol_id": 1180 }, "minecraft:music_disc_pigstep": { - "protocol_id": 1176 + "protocol_id": 1183 }, "minecraft:music_disc_relic": { - "protocol_id": 1174 + "protocol_id": 1181 }, "minecraft:music_disc_stal": { - "protocol_id": 1168 + "protocol_id": 1175 }, "minecraft:music_disc_strad": { - "protocol_id": 1169 + "protocol_id": 1176 }, "minecraft:music_disc_wait": { - "protocol_id": 1172 + "protocol_id": 1179 }, "minecraft:music_disc_ward": { - "protocol_id": 1170 + "protocol_id": 1177 }, "minecraft:mutton": { - "protocol_id": 1124 + "protocol_id": 1131 }, "minecraft:mycelium": { - "protocol_id": 363 + "protocol_id": 364 }, "minecraft:name_tag": { - "protocol_id": 1122 + "protocol_id": 1129 }, "minecraft:nautilus_shell": { - "protocol_id": 1180 + "protocol_id": 1187 }, "minecraft:nether_brick": { - "protocol_id": 1108 + "protocol_id": 1115 }, "minecraft:nether_brick_fence": { - "protocol_id": 368 + "protocol_id": 369 }, "minecraft:nether_brick_slab": { - "protocol_id": 272 + "protocol_id": 273 }, "minecraft:nether_brick_stairs": { - "protocol_id": 369 + "protocol_id": 370 }, "minecraft:nether_brick_wall": { - "protocol_id": 405 + "protocol_id": 406 }, "minecraft:nether_bricks": { - "protocol_id": 365 + "protocol_id": 366 }, "minecraft:nether_gold_ore": { "protocol_id": 78 @@ -2310,391 +2346,397 @@ "protocol_id": 79 }, "minecraft:nether_sprouts": { - "protocol_id": 239 + "protocol_id": 240 }, "minecraft:nether_star": { - "protocol_id": 1103 + "protocol_id": 1110 }, "minecraft:nether_wart": { - "protocol_id": 994 + "protocol_id": 997 }, "minecraft:nether_wart_block": { - "protocol_id": 516 + "protocol_id": 517 }, "minecraft:netherite_axe": { - "protocol_id": 842 + "protocol_id": 845 }, "minecraft:netherite_block": { - "protocol_id": 91 + "protocol_id": 92 }, "minecraft:netherite_boots": { - "protocol_id": 876 + "protocol_id": 879 }, "minecraft:netherite_chestplate": { - "protocol_id": 874 + "protocol_id": 877 }, "minecraft:netherite_helmet": { - "protocol_id": 873 + "protocol_id": 876 }, "minecraft:netherite_hoe": { - "protocol_id": 843 + "protocol_id": 846 }, "minecraft:netherite_ingot": { - "protocol_id": 812 + "protocol_id": 815 }, "minecraft:netherite_leggings": { - "protocol_id": 875 + "protocol_id": 878 }, "minecraft:netherite_pickaxe": { - "protocol_id": 841 + "protocol_id": 844 }, "minecraft:netherite_scrap": { - "protocol_id": 813 + "protocol_id": 816 }, "minecraft:netherite_shovel": { - "protocol_id": 840 + "protocol_id": 843 }, "minecraft:netherite_sword": { - "protocol_id": 839 + "protocol_id": 842 }, "minecraft:netherite_upgrade_smithing_template": { - "protocol_id": 1257 + "protocol_id": 1266 }, "minecraft:netherrack": { - "protocol_id": 324 + "protocol_id": 325 }, "minecraft:note_block": { - "protocol_id": 680 + "protocol_id": 681 }, "minecraft:oak_boat": { - "protocol_id": 773 + "protocol_id": 774 }, "minecraft:oak_button": { - "protocol_id": 683 + "protocol_id": 684 }, "minecraft:oak_chest_boat": { - "protocol_id": 774 + "protocol_id": 775 }, "minecraft:oak_door": { - "protocol_id": 710 + "protocol_id": 711 }, "minecraft:oak_fence": { - "protocol_id": 310 + "protocol_id": 311 }, "minecraft:oak_fence_gate": { - "protocol_id": 749 + "protocol_id": 750 }, "minecraft:oak_hanging_sign": { - "protocol_id": 894 + "protocol_id": 897 }, "minecraft:oak_leaves": { - "protocol_id": 175 + "protocol_id": 176 }, "minecraft:oak_log": { - "protocol_id": 131 + "protocol_id": 132 }, "minecraft:oak_planks": { "protocol_id": 36 }, "minecraft:oak_pressure_plate": { - "protocol_id": 698 + "protocol_id": 699 }, "minecraft:oak_sapling": { "protocol_id": 48 }, "minecraft:oak_sign": { - "protocol_id": 883 + "protocol_id": 886 }, "minecraft:oak_slab": { - "protocol_id": 251 + "protocol_id": 252 }, "minecraft:oak_stairs": { - "protocol_id": 382 + "protocol_id": 383 }, "minecraft:oak_trapdoor": { - "protocol_id": 730 + "protocol_id": 731 }, "minecraft:oak_wood": { - "protocol_id": 165 + "protocol_id": 166 }, "minecraft:observer": { - "protocol_id": 665 + "protocol_id": 666 }, "minecraft:obsidian": { - "protocol_id": 289 + "protocol_id": 290 }, "minecraft:ocelot_spawn_egg": { - "protocol_id": 1040 + "protocol_id": 1045 }, "minecraft:ochre_froglight": { - "protocol_id": 1251 + "protocol_id": 1260 + }, + "minecraft:ominous_bottle": { + "protocol_id": 1328 + }, + "minecraft:ominous_trial_key": { + "protocol_id": 1326 }, "minecraft:orange_banner": { - "protocol_id": 1127 + "protocol_id": 1134 }, "minecraft:orange_bed": { - "protocol_id": 962 + "protocol_id": 965 }, "minecraft:orange_candle": { - "protocol_id": 1231 + "protocol_id": 1240 }, "minecraft:orange_carpet": { - "protocol_id": 446 + "protocol_id": 447 }, "minecraft:orange_concrete": { - "protocol_id": 555 + "protocol_id": 556 }, "minecraft:orange_concrete_powder": { - "protocol_id": 571 + "protocol_id": 572 }, "minecraft:orange_dye": { - "protocol_id": 942 + "protocol_id": 945 }, "minecraft:orange_glazed_terracotta": { - "protocol_id": 539 + "protocol_id": 540 }, "minecraft:orange_shulker_box": { - "protocol_id": 523 + "protocol_id": 524 }, "minecraft:orange_stained_glass": { - "protocol_id": 471 + "protocol_id": 472 }, "minecraft:orange_stained_glass_pane": { - "protocol_id": 487 + "protocol_id": 488 }, "minecraft:orange_terracotta": { - "protocol_id": 427 + "protocol_id": 428 }, "minecraft:orange_tulip": { - "protocol_id": 223 + "protocol_id": 224 }, "minecraft:orange_wool": { - "protocol_id": 202 + "protocol_id": 203 }, "minecraft:oxeye_daisy": { - "protocol_id": 226 + "protocol_id": 227 }, "minecraft:oxidized_chiseled_copper": { - "protocol_id": 98 + "protocol_id": 99 }, "minecraft:oxidized_copper": { - "protocol_id": 94 + "protocol_id": 95 }, "minecraft:oxidized_copper_bulb": { - "protocol_id": 1305 + "protocol_id": 1319 }, "minecraft:oxidized_copper_door": { - "protocol_id": 724 + "protocol_id": 725 }, "minecraft:oxidized_copper_grate": { - "protocol_id": 1297 + "protocol_id": 1311 }, "minecraft:oxidized_copper_trapdoor": { - "protocol_id": 744 + "protocol_id": 745 }, "minecraft:oxidized_cut_copper": { - "protocol_id": 102 + "protocol_id": 103 }, "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 110 + "protocol_id": 111 }, "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 106 + "protocol_id": 107 }, "minecraft:packed_ice": { - "protocol_id": 462 + "protocol_id": 463 }, "minecraft:packed_mud": { - "protocol_id": 343 + "protocol_id": 344 }, "minecraft:painting": { - "protocol_id": 880 + "protocol_id": 883 }, "minecraft:panda_spawn_egg": { - "protocol_id": 1041 + "protocol_id": 1046 }, "minecraft:paper": { - "protocol_id": 921 + "protocol_id": 924 }, "minecraft:parrot_spawn_egg": { - "protocol_id": 1042 + "protocol_id": 1047 }, "minecraft:pearlescent_froglight": { - "protocol_id": 1253 + "protocol_id": 1262 }, "minecraft:peony": { - "protocol_id": 467 + "protocol_id": 468 }, "minecraft:petrified_oak_slab": { - "protocol_id": 267 + "protocol_id": 268 }, "minecraft:phantom_membrane": { - "protocol_id": 1179 + "protocol_id": 1186 }, "minecraft:phantom_spawn_egg": { - "protocol_id": 1043 + "protocol_id": 1048 }, "minecraft:pig_spawn_egg": { - "protocol_id": 1044 + "protocol_id": 1049 }, "minecraft:piglin_banner_pattern": { - "protocol_id": 1190 + "protocol_id": 1197 }, "minecraft:piglin_brute_spawn_egg": { - "protocol_id": 1046 + "protocol_id": 1051 }, "minecraft:piglin_head": { - "protocol_id": 1102 + "protocol_id": 1109 }, "minecraft:piglin_spawn_egg": { - "protocol_id": 1045 + "protocol_id": 1050 }, "minecraft:pillager_spawn_egg": { - "protocol_id": 1047 + "protocol_id": 1052 }, "minecraft:pink_banner": { - "protocol_id": 1132 + "protocol_id": 1139 }, "minecraft:pink_bed": { - "protocol_id": 967 + "protocol_id": 970 }, "minecraft:pink_candle": { - "protocol_id": 1236 + "protocol_id": 1245 }, "minecraft:pink_carpet": { - "protocol_id": 451 + "protocol_id": 452 }, "minecraft:pink_concrete": { - "protocol_id": 560 + "protocol_id": 561 }, "minecraft:pink_concrete_powder": { - "protocol_id": 576 + "protocol_id": 577 }, "minecraft:pink_dye": { - "protocol_id": 947 + "protocol_id": 950 }, "minecraft:pink_glazed_terracotta": { - "protocol_id": 544 + "protocol_id": 545 }, "minecraft:pink_petals": { - "protocol_id": 245 + "protocol_id": 246 }, "minecraft:pink_shulker_box": { - "protocol_id": 528 + "protocol_id": 529 }, "minecraft:pink_stained_glass": { - "protocol_id": 476 + "protocol_id": 477 }, "minecraft:pink_stained_glass_pane": { - "protocol_id": 492 + "protocol_id": 493 }, "minecraft:pink_terracotta": { - "protocol_id": 432 + "protocol_id": 433 }, "minecraft:pink_tulip": { - "protocol_id": 225 + "protocol_id": 226 }, "minecraft:pink_wool": { - "protocol_id": 207 + "protocol_id": 208 }, "minecraft:piston": { - "protocol_id": 661 + "protocol_id": 662 }, "minecraft:pitcher_plant": { - "protocol_id": 231 + "protocol_id": 232 }, "minecraft:pitcher_pod": { - "protocol_id": 1146 + "protocol_id": 1153 }, "minecraft:player_head": { - "protocol_id": 1098 + "protocol_id": 1105 }, "minecraft:plenty_pottery_sherd": { - "protocol_id": 1288 + "protocol_id": 1301 }, "minecraft:podzol": { "protocol_id": 30 }, "minecraft:pointed_dripstone": { - "protocol_id": 1250 + "protocol_id": 1259 }, "minecraft:poisonous_potato": { - "protocol_id": 1093 + "protocol_id": 1100 }, "minecraft:polar_bear_spawn_egg": { - "protocol_id": 1048 + "protocol_id": 1053 }, "minecraft:polished_andesite": { "protocol_id": 7 }, "minecraft:polished_andesite_slab": { - "protocol_id": 649 + "protocol_id": 650 }, "minecraft:polished_andesite_stairs": { - "protocol_id": 632 + "protocol_id": 633 }, "minecraft:polished_basalt": { - "protocol_id": 328 + "protocol_id": 329 }, "minecraft:polished_blackstone": { - "protocol_id": 1220 + "protocol_id": 1229 }, "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 1225 + "protocol_id": 1234 }, "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 1226 + "protocol_id": 1235 }, "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 413 + "protocol_id": 414 }, "minecraft:polished_blackstone_bricks": { - "protocol_id": 1224 + "protocol_id": 1233 }, "minecraft:polished_blackstone_button": { - "protocol_id": 682 + "protocol_id": 683 }, "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 695 + "protocol_id": 696 }, "minecraft:polished_blackstone_slab": { - "protocol_id": 1221 + "protocol_id": 1230 }, "minecraft:polished_blackstone_stairs": { - "protocol_id": 1222 + "protocol_id": 1231 }, "minecraft:polished_blackstone_wall": { - "protocol_id": 412 + "protocol_id": 413 }, "minecraft:polished_deepslate": { "protocol_id": 10 }, "minecraft:polished_deepslate_slab": { - "protocol_id": 652 + "protocol_id": 653 }, "minecraft:polished_deepslate_stairs": { - "protocol_id": 635 + "protocol_id": 636 }, "minecraft:polished_deepslate_wall": { - "protocol_id": 415 + "protocol_id": 416 }, "minecraft:polished_diorite": { "protocol_id": 5 }, "minecraft:polished_diorite_slab": { - "protocol_id": 641 + "protocol_id": 642 }, "minecraft:polished_diorite_stairs": { - "protocol_id": 623 + "protocol_id": 624 }, "minecraft:polished_granite": { "protocol_id": 3 }, "minecraft:polished_granite_slab": { - "protocol_id": 638 + "protocol_id": 639 }, "minecraft:polished_granite_stairs": { - "protocol_id": 620 + "protocol_id": 621 }, "minecraft:polished_tuff": { "protocol_id": 17 @@ -2709,730 +2751,730 @@ "protocol_id": 20 }, "minecraft:popped_chorus_fruit": { - "protocol_id": 1144 + "protocol_id": 1151 }, "minecraft:poppy": { - "protocol_id": 218 + "protocol_id": 219 }, "minecraft:porkchop": { - "protocol_id": 878 + "protocol_id": 881 }, "minecraft:potato": { - "protocol_id": 1091 + "protocol_id": 1098 }, "minecraft:potion": { - "protocol_id": 995 + "protocol_id": 998 }, "minecraft:powder_snow_bucket": { - "protocol_id": 908 + "protocol_id": 911 }, "minecraft:powered_rail": { - "protocol_id": 760 + "protocol_id": 761 }, "minecraft:prismarine": { - "protocol_id": 502 + "protocol_id": 503 }, "minecraft:prismarine_brick_slab": { - "protocol_id": 278 + "protocol_id": 279 }, "minecraft:prismarine_brick_stairs": { - "protocol_id": 506 + "protocol_id": 507 }, "minecraft:prismarine_bricks": { - "protocol_id": 503 + "protocol_id": 504 }, "minecraft:prismarine_crystals": { - "protocol_id": 1110 + "protocol_id": 1117 }, "minecraft:prismarine_shard": { - "protocol_id": 1109 + "protocol_id": 1116 }, "minecraft:prismarine_slab": { - "protocol_id": 277 + "protocol_id": 278 }, "minecraft:prismarine_stairs": { - "protocol_id": 505 + "protocol_id": 506 }, "minecraft:prismarine_wall": { - "protocol_id": 399 + "protocol_id": 400 }, "minecraft:prize_pottery_sherd": { - "protocol_id": 1289 + "protocol_id": 1302 }, "minecraft:pufferfish": { - "protocol_id": 935 + "protocol_id": 938 }, "minecraft:pufferfish_bucket": { - "protocol_id": 912 + "protocol_id": 915 }, "minecraft:pufferfish_spawn_egg": { - "protocol_id": 1049 + "protocol_id": 1054 }, "minecraft:pumpkin": { - "protocol_id": 321 + "protocol_id": 322 }, "minecraft:pumpkin_pie": { - "protocol_id": 1104 + "protocol_id": 1111 }, "minecraft:pumpkin_seeds": { - "protocol_id": 983 + "protocol_id": 986 }, "minecraft:purple_banner": { - "protocol_id": 1136 + "protocol_id": 1143 }, "minecraft:purple_bed": { - "protocol_id": 971 + "protocol_id": 974 }, "minecraft:purple_candle": { - "protocol_id": 1240 + "protocol_id": 1249 }, "minecraft:purple_carpet": { - "protocol_id": 455 + "protocol_id": 456 }, "minecraft:purple_concrete": { - "protocol_id": 564 + "protocol_id": 565 }, "minecraft:purple_concrete_powder": { - "protocol_id": 580 + "protocol_id": 581 }, "minecraft:purple_dye": { - "protocol_id": 951 + "protocol_id": 954 }, "minecraft:purple_glazed_terracotta": { - "protocol_id": 548 + "protocol_id": 549 }, "minecraft:purple_shulker_box": { - "protocol_id": 532 + "protocol_id": 533 }, "minecraft:purple_stained_glass": { - "protocol_id": 480 + "protocol_id": 481 }, "minecraft:purple_stained_glass_pane": { - "protocol_id": 496 + "protocol_id": 497 }, "minecraft:purple_terracotta": { - "protocol_id": 436 + "protocol_id": 437 }, "minecraft:purple_wool": { - "protocol_id": 211 + "protocol_id": 212 }, "minecraft:purpur_block": { - "protocol_id": 294 + "protocol_id": 295 }, "minecraft:purpur_pillar": { - "protocol_id": 295 + "protocol_id": 296 }, "minecraft:purpur_slab": { - "protocol_id": 276 + "protocol_id": 277 }, "minecraft:purpur_stairs": { - "protocol_id": 296 + "protocol_id": 297 }, "minecraft:quartz": { - "protocol_id": 804 + "protocol_id": 807 }, "minecraft:quartz_block": { - "protocol_id": 422 + "protocol_id": 423 }, "minecraft:quartz_bricks": { - "protocol_id": 423 + "protocol_id": 424 }, "minecraft:quartz_pillar": { - "protocol_id": 424 + "protocol_id": 425 }, "minecraft:quartz_slab": { - "protocol_id": 273 + "protocol_id": 274 }, "minecraft:quartz_stairs": { - "protocol_id": 425 + "protocol_id": 426 }, "minecraft:rabbit": { - "protocol_id": 1111 + "protocol_id": 1118 }, "minecraft:rabbit_foot": { - "protocol_id": 1114 + "protocol_id": 1121 }, "minecraft:rabbit_hide": { - "protocol_id": 1115 + "protocol_id": 1122 }, "minecraft:rabbit_spawn_egg": { - "protocol_id": 1050 + "protocol_id": 1055 }, "minecraft:rabbit_stew": { - "protocol_id": 1113 + "protocol_id": 1120 }, "minecraft:rail": { - "protocol_id": 762 + "protocol_id": 763 }, "minecraft:raiser_armor_trim_smithing_template": { - "protocol_id": 1272 + "protocol_id": 1281 }, "minecraft:ravager_spawn_egg": { - "protocol_id": 1051 + "protocol_id": 1056 }, "minecraft:raw_copper": { - "protocol_id": 808 + "protocol_id": 811 }, "minecraft:raw_copper_block": { "protocol_id": 83 }, "minecraft:raw_gold": { - "protocol_id": 810 + "protocol_id": 813 }, "minecraft:raw_gold_block": { "protocol_id": 84 }, "minecraft:raw_iron": { - "protocol_id": 806 + "protocol_id": 809 }, "minecraft:raw_iron_block": { "protocol_id": 82 }, "minecraft:recovery_compass": { - "protocol_id": 926 + "protocol_id": 929 }, "minecraft:red_banner": { - "protocol_id": 1140 + "protocol_id": 1147 }, "minecraft:red_bed": { - "protocol_id": 975 + "protocol_id": 978 }, "minecraft:red_candle": { - "protocol_id": 1244 + "protocol_id": 1253 }, "minecraft:red_carpet": { - "protocol_id": 459 + "protocol_id": 460 }, "minecraft:red_concrete": { - "protocol_id": 568 + "protocol_id": 569 }, "minecraft:red_concrete_powder": { - "protocol_id": 584 + "protocol_id": 585 }, "minecraft:red_dye": { - "protocol_id": 955 + "protocol_id": 958 }, "minecraft:red_glazed_terracotta": { - "protocol_id": 552 + "protocol_id": 553 }, "minecraft:red_mushroom": { - "protocol_id": 234 + "protocol_id": 235 }, "minecraft:red_mushroom_block": { - "protocol_id": 352 + "protocol_id": 353 }, "minecraft:red_nether_brick_slab": { - "protocol_id": 648 + "protocol_id": 649 }, "minecraft:red_nether_brick_stairs": { - "protocol_id": 631 + "protocol_id": 632 }, "minecraft:red_nether_brick_wall": { - "protocol_id": 407 + "protocol_id": 408 }, "minecraft:red_nether_bricks": { - "protocol_id": 518 + "protocol_id": 519 }, "minecraft:red_sand": { "protocol_id": 60 }, "minecraft:red_sandstone": { - "protocol_id": 509 + "protocol_id": 510 }, "minecraft:red_sandstone_slab": { - "protocol_id": 274 + "protocol_id": 275 }, "minecraft:red_sandstone_stairs": { - "protocol_id": 512 + "protocol_id": 513 }, "minecraft:red_sandstone_wall": { - "protocol_id": 400 + "protocol_id": 401 }, "minecraft:red_shulker_box": { - "protocol_id": 536 + "protocol_id": 537 }, "minecraft:red_stained_glass": { - "protocol_id": 484 + "protocol_id": 485 }, "minecraft:red_stained_glass_pane": { - "protocol_id": 500 + "protocol_id": 501 }, "minecraft:red_terracotta": { - "protocol_id": 440 + "protocol_id": 441 }, "minecraft:red_tulip": { - "protocol_id": 222 + "protocol_id": 223 }, "minecraft:red_wool": { - "protocol_id": 215 + "protocol_id": 216 }, "minecraft:redstone": { - "protocol_id": 656 + "protocol_id": 657 }, "minecraft:redstone_block": { - "protocol_id": 658 + "protocol_id": 659 }, "minecraft:redstone_lamp": { - "protocol_id": 679 + "protocol_id": 680 }, "minecraft:redstone_ore": { "protocol_id": 70 }, "minecraft:redstone_torch": { - "protocol_id": 657 + "protocol_id": 658 }, "minecraft:reinforced_deepslate": { - "protocol_id": 350 + "protocol_id": 351 }, "minecraft:repeater": { - "protocol_id": 659 + "protocol_id": 660 }, "minecraft:repeating_command_block": { - "protocol_id": 513 + "protocol_id": 514 }, "minecraft:respawn_anchor": { - "protocol_id": 1228 + "protocol_id": 1237 }, "minecraft:rib_armor_trim_smithing_template": { - "protocol_id": 1267 + "protocol_id": 1276 }, "minecraft:rooted_dirt": { "protocol_id": 31 }, "minecraft:rose_bush": { - "protocol_id": 466 + "protocol_id": 467 }, "minecraft:rotten_flesh": { - "protocol_id": 989 + "protocol_id": 992 }, "minecraft:saddle": { - "protocol_id": 764 + "protocol_id": 765 }, "minecraft:salmon": { - "protocol_id": 933 + "protocol_id": 936 }, "minecraft:salmon_bucket": { - "protocol_id": 913 + "protocol_id": 916 }, "minecraft:salmon_spawn_egg": { - "protocol_id": 1052 + "protocol_id": 1057 }, "minecraft:sand": { "protocol_id": 57 }, "minecraft:sandstone": { - "protocol_id": 190 + "protocol_id": 191 }, "minecraft:sandstone_slab": { - "protocol_id": 265 + "protocol_id": 266 }, "minecraft:sandstone_stairs": { - "protocol_id": 379 + "protocol_id": 380 }, "minecraft:sandstone_wall": { - "protocol_id": 408 + "protocol_id": 409 }, "minecraft:scaffolding": { - "protocol_id": 655 + "protocol_id": 656 + }, + "minecraft:scrape_pottery_sherd": { + "protocol_id": 1303 }, "minecraft:sculk": { - "protocol_id": 370 + "protocol_id": 371 }, "minecraft:sculk_catalyst": { - "protocol_id": 372 + "protocol_id": 373 }, "minecraft:sculk_sensor": { - "protocol_id": 674 + "protocol_id": 675 }, "minecraft:sculk_shrieker": { - "protocol_id": 373 + "protocol_id": 374 }, "minecraft:sculk_vein": { - "protocol_id": 371 - }, - "minecraft:scute": { - "protocol_id": 794 + "protocol_id": 372 }, "minecraft:sea_lantern": { - "protocol_id": 508 + "protocol_id": 509 }, "minecraft:sea_pickle": { - "protocol_id": 200 + "protocol_id": 201 }, "minecraft:seagrass": { - "protocol_id": 199 + "protocol_id": 200 }, "minecraft:sentry_armor_trim_smithing_template": { - "protocol_id": 1258 + "protocol_id": 1267 }, "minecraft:shaper_armor_trim_smithing_template": { - "protocol_id": 1270 + "protocol_id": 1279 }, "minecraft:sheaf_pottery_sherd": { - "protocol_id": 1290 + "protocol_id": 1304 }, "minecraft:shears": { - "protocol_id": 980 + "protocol_id": 983 }, "minecraft:sheep_spawn_egg": { - "protocol_id": 1053 + "protocol_id": 1058 }, "minecraft:shelter_pottery_sherd": { - "protocol_id": 1291 + "protocol_id": 1305 }, "minecraft:shield": { - "protocol_id": 1155 + "protocol_id": 1162 }, "minecraft:short_grass": { - "protocol_id": 194 + "protocol_id": 195 }, "minecraft:shroomlight": { - "protocol_id": 1208 + "protocol_id": 1217 }, "minecraft:shulker_box": { - "protocol_id": 521 + "protocol_id": 522 }, "minecraft:shulker_shell": { - "protocol_id": 1157 + "protocol_id": 1164 }, "minecraft:shulker_spawn_egg": { - "protocol_id": 1054 + "protocol_id": 1059 }, "minecraft:silence_armor_trim_smithing_template": { - "protocol_id": 1271 + "protocol_id": 1280 }, "minecraft:silverfish_spawn_egg": { - "protocol_id": 1055 + "protocol_id": 1060 }, "minecraft:skeleton_horse_spawn_egg": { - "protocol_id": 1057 + "protocol_id": 1062 }, "minecraft:skeleton_skull": { - "protocol_id": 1096 + "protocol_id": 1103 }, "minecraft:skeleton_spawn_egg": { - "protocol_id": 1056 + "protocol_id": 1061 }, "minecraft:skull_banner_pattern": { - "protocol_id": 1187 + "protocol_id": 1194 }, "minecraft:skull_pottery_sherd": { - "protocol_id": 1292 + "protocol_id": 1306 }, "minecraft:slime_ball": { - "protocol_id": 923 + "protocol_id": 926 }, "minecraft:slime_block": { - "protocol_id": 663 + "protocol_id": 664 }, "minecraft:slime_spawn_egg": { - "protocol_id": 1058 + "protocol_id": 1063 }, "minecraft:small_amethyst_bud": { - "protocol_id": 1246 + "protocol_id": 1255 }, "minecraft:small_dripleaf": { - "protocol_id": 249 + "protocol_id": 250 }, "minecraft:smithing_table": { - "protocol_id": 1199 + "protocol_id": 1208 }, "minecraft:smoker": { - "protocol_id": 1194 + "protocol_id": 1203 }, "minecraft:smooth_basalt": { - "protocol_id": 329 + "protocol_id": 330 }, "minecraft:smooth_quartz": { - "protocol_id": 280 + "protocol_id": 281 }, "minecraft:smooth_quartz_slab": { - "protocol_id": 645 + "protocol_id": 646 }, "minecraft:smooth_quartz_stairs": { - "protocol_id": 628 + "protocol_id": 629 }, "minecraft:smooth_red_sandstone": { - "protocol_id": 281 + "protocol_id": 282 }, "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 639 + "protocol_id": 640 }, "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 621 + "protocol_id": 622 }, "minecraft:smooth_sandstone": { - "protocol_id": 282 + "protocol_id": 283 }, "minecraft:smooth_sandstone_slab": { - "protocol_id": 644 + "protocol_id": 645 }, "minecraft:smooth_sandstone_stairs": { - "protocol_id": 627 + "protocol_id": 628 }, "minecraft:smooth_stone": { - "protocol_id": 283 + "protocol_id": 284 }, "minecraft:smooth_stone_slab": { - "protocol_id": 264 + "protocol_id": 265 }, "minecraft:sniffer_egg": { - "protocol_id": 587 + "protocol_id": 588 }, "minecraft:sniffer_spawn_egg": { - "protocol_id": 1059 + "protocol_id": 1064 }, "minecraft:snort_pottery_sherd": { - "protocol_id": 1293 + "protocol_id": 1307 }, "minecraft:snout_armor_trim_smithing_template": { - "protocol_id": 1266 + "protocol_id": 1275 }, "minecraft:snow": { - "protocol_id": 304 + "protocol_id": 305 }, "minecraft:snow_block": { - "protocol_id": 306 + "protocol_id": 307 }, "minecraft:snow_golem_spawn_egg": { - "protocol_id": 1060 + "protocol_id": 1065 }, "minecraft:snowball": { - "protocol_id": 909 + "protocol_id": 912 }, "minecraft:soul_campfire": { - "protocol_id": 1207 + "protocol_id": 1216 }, "minecraft:soul_lantern": { - "protocol_id": 1203 + "protocol_id": 1212 }, "minecraft:soul_sand": { - "protocol_id": 325 + "protocol_id": 326 }, "minecraft:soul_soil": { - "protocol_id": 326 + "protocol_id": 327 }, "minecraft:soul_torch": { - "protocol_id": 330 + "protocol_id": 331 }, "minecraft:spawner": { - "protocol_id": 297 + "protocol_id": 298 }, "minecraft:spectral_arrow": { - "protocol_id": 1152 + "protocol_id": 1159 }, "minecraft:spider_eye": { - "protocol_id": 997 + "protocol_id": 1000 }, "minecraft:spider_spawn_egg": { - "protocol_id": 1061 + "protocol_id": 1066 }, "minecraft:spire_armor_trim_smithing_template": { - "protocol_id": 1268 + "protocol_id": 1277 }, "minecraft:splash_potion": { - "protocol_id": 1151 + "protocol_id": 1158 }, "minecraft:sponge": { - "protocol_id": 185 + "protocol_id": 186 }, "minecraft:spore_blossom": { - "protocol_id": 232 + "protocol_id": 233 }, "minecraft:spruce_boat": { - "protocol_id": 775 + "protocol_id": 776 }, "minecraft:spruce_button": { - "protocol_id": 684 + "protocol_id": 685 }, "minecraft:spruce_chest_boat": { - "protocol_id": 776 + "protocol_id": 777 }, "minecraft:spruce_door": { - "protocol_id": 711 + "protocol_id": 712 }, "minecraft:spruce_fence": { - "protocol_id": 311 + "protocol_id": 312 }, "minecraft:spruce_fence_gate": { - "protocol_id": 750 + "protocol_id": 751 }, "minecraft:spruce_hanging_sign": { - "protocol_id": 895 + "protocol_id": 898 }, "minecraft:spruce_leaves": { - "protocol_id": 176 + "protocol_id": 177 }, "minecraft:spruce_log": { - "protocol_id": 132 + "protocol_id": 133 }, "minecraft:spruce_planks": { "protocol_id": 37 }, "minecraft:spruce_pressure_plate": { - "protocol_id": 699 + "protocol_id": 700 }, "minecraft:spruce_sapling": { "protocol_id": 49 }, "minecraft:spruce_sign": { - "protocol_id": 884 + "protocol_id": 887 }, "minecraft:spruce_slab": { - "protocol_id": 252 + "protocol_id": 253 }, "minecraft:spruce_stairs": { - "protocol_id": 383 + "protocol_id": 384 }, "minecraft:spruce_trapdoor": { - "protocol_id": 731 + "protocol_id": 732 }, "minecraft:spruce_wood": { - "protocol_id": 166 + "protocol_id": 167 }, "minecraft:spyglass": { - "protocol_id": 930 + "protocol_id": 933 }, "minecraft:squid_spawn_egg": { - "protocol_id": 1062 + "protocol_id": 1067 }, "minecraft:stick": { - "protocol_id": 844 + "protocol_id": 847 }, "minecraft:sticky_piston": { - "protocol_id": 662 + "protocol_id": 663 }, "minecraft:stone": { "protocol_id": 1 }, "minecraft:stone_axe": { - "protocol_id": 822 + "protocol_id": 825 }, "minecraft:stone_brick_slab": { - "protocol_id": 270 + "protocol_id": 271 }, "minecraft:stone_brick_stairs": { - "protocol_id": 361 + "protocol_id": 362 }, "minecraft:stone_brick_wall": { - "protocol_id": 403 + "protocol_id": 404 }, "minecraft:stone_bricks": { - "protocol_id": 339 + "protocol_id": 340 }, "minecraft:stone_button": { - "protocol_id": 681 + "protocol_id": 682 }, "minecraft:stone_hoe": { - "protocol_id": 823 + "protocol_id": 826 }, "minecraft:stone_pickaxe": { - "protocol_id": 821 + "protocol_id": 824 }, "minecraft:stone_pressure_plate": { - "protocol_id": 694 + "protocol_id": 695 }, "minecraft:stone_shovel": { - "protocol_id": 820 + "protocol_id": 823 }, "minecraft:stone_slab": { - "protocol_id": 263 + "protocol_id": 264 }, "minecraft:stone_stairs": { - "protocol_id": 626 + "protocol_id": 627 }, "minecraft:stone_sword": { - "protocol_id": 819 + "protocol_id": 822 }, "minecraft:stonecutter": { - "protocol_id": 1200 + "protocol_id": 1209 }, "minecraft:stray_spawn_egg": { - "protocol_id": 1063 + "protocol_id": 1068 }, "minecraft:strider_spawn_egg": { - "protocol_id": 1064 + "protocol_id": 1069 }, "minecraft:string": { - "protocol_id": 847 + "protocol_id": 850 }, "minecraft:stripped_acacia_log": { - "protocol_id": 148 + "protocol_id": 149 }, "minecraft:stripped_acacia_wood": { - "protocol_id": 158 + "protocol_id": 159 }, "minecraft:stripped_bamboo_block": { - "protocol_id": 164 + "protocol_id": 165 }, "minecraft:stripped_birch_log": { - "protocol_id": 146 + "protocol_id": 147 }, "minecraft:stripped_birch_wood": { - "protocol_id": 156 + "protocol_id": 157 }, "minecraft:stripped_cherry_log": { - "protocol_id": 149 + "protocol_id": 150 }, "minecraft:stripped_cherry_wood": { - "protocol_id": 159 + "protocol_id": 160 }, "minecraft:stripped_crimson_hyphae": { - "protocol_id": 162 + "protocol_id": 163 }, "minecraft:stripped_crimson_stem": { - "protocol_id": 152 + "protocol_id": 153 }, "minecraft:stripped_dark_oak_log": { - "protocol_id": 150 + "protocol_id": 151 }, "minecraft:stripped_dark_oak_wood": { - "protocol_id": 160 + "protocol_id": 161 }, "minecraft:stripped_jungle_log": { - "protocol_id": 147 + "protocol_id": 148 }, "minecraft:stripped_jungle_wood": { - "protocol_id": 157 + "protocol_id": 158 }, "minecraft:stripped_mangrove_log": { - "protocol_id": 151 + "protocol_id": 152 }, "minecraft:stripped_mangrove_wood": { - "protocol_id": 161 + "protocol_id": 162 }, "minecraft:stripped_oak_log": { - "protocol_id": 144 + "protocol_id": 145 }, "minecraft:stripped_oak_wood": { - "protocol_id": 154 + "protocol_id": 155 }, "minecraft:stripped_spruce_log": { - "protocol_id": 145 + "protocol_id": 146 }, "minecraft:stripped_spruce_wood": { - "protocol_id": 155 + "protocol_id": 156 }, "minecraft:stripped_warped_hyphae": { - "protocol_id": 163 + "protocol_id": 164 }, "minecraft:stripped_warped_stem": { - "protocol_id": 153 + "protocol_id": 154 }, "minecraft:structure_block": { - "protocol_id": 791 + "protocol_id": 792 }, "minecraft:structure_void": { - "protocol_id": 520 + "protocol_id": 521 }, "minecraft:sugar": { - "protocol_id": 959 + "protocol_id": 962 }, "minecraft:sugar_cane": { - "protocol_id": 242 + "protocol_id": 243 }, "minecraft:sunflower": { - "protocol_id": 464 + "protocol_id": 465 }, "minecraft:suspicious_gravel": { "protocol_id": 59 @@ -3441,88 +3483,88 @@ "protocol_id": 58 }, "minecraft:suspicious_stew": { - "protocol_id": 1183 + "protocol_id": 1190 }, "minecraft:sweet_berries": { - "protocol_id": 1204 + "protocol_id": 1213 }, "minecraft:tadpole_bucket": { - "protocol_id": 917 + "protocol_id": 920 }, "minecraft:tadpole_spawn_egg": { - "protocol_id": 1065 + "protocol_id": 1070 }, "minecraft:tall_grass": { - "protocol_id": 468 + "protocol_id": 469 }, "minecraft:target": { - "protocol_id": 670 + "protocol_id": 671 }, "minecraft:terracotta": { - "protocol_id": 461 + "protocol_id": 462 }, "minecraft:tide_armor_trim_smithing_template": { - "protocol_id": 1265 + "protocol_id": 1274 }, "minecraft:tinted_glass": { - "protocol_id": 188 + "protocol_id": 189 }, "minecraft:tipped_arrow": { - "protocol_id": 1153 + "protocol_id": 1160 }, "minecraft:tnt": { - "protocol_id": 678 + "protocol_id": 679 }, "minecraft:tnt_minecart": { - "protocol_id": 768 + "protocol_id": 769 }, "minecraft:torch": { - "protocol_id": 290 + "protocol_id": 291 }, "minecraft:torchflower": { - "protocol_id": 230 + "protocol_id": 231 }, "minecraft:torchflower_seeds": { - "protocol_id": 1145 + "protocol_id": 1152 }, "minecraft:totem_of_undying": { - "protocol_id": 1156 + "protocol_id": 1163 }, "minecraft:trader_llama_spawn_egg": { - "protocol_id": 1066 + "protocol_id": 1071 }, "minecraft:trapped_chest": { - "protocol_id": 677 + "protocol_id": 678 }, "minecraft:trial_key": { - "protocol_id": 1311 + "protocol_id": 1325 }, "minecraft:trial_spawner": { - "protocol_id": 1310 + "protocol_id": 1324 }, "minecraft:trident": { - "protocol_id": 1178 + "protocol_id": 1185 }, "minecraft:tripwire_hook": { - "protocol_id": 676 + "protocol_id": 677 }, "minecraft:tropical_fish": { - "protocol_id": 934 + "protocol_id": 937 }, "minecraft:tropical_fish_bucket": { - "protocol_id": 915 + "protocol_id": 918 }, "minecraft:tropical_fish_spawn_egg": { - "protocol_id": 1067 + "protocol_id": 1072 }, "minecraft:tube_coral": { - "protocol_id": 598 + "protocol_id": 599 }, "minecraft:tube_coral_block": { - "protocol_id": 593 + "protocol_id": 594 }, "minecraft:tube_coral_fan": { - "protocol_id": 608 + "protocol_id": 609 }, "minecraft:tuff": { "protocol_id": 12 @@ -3549,67 +3591,73 @@ "protocol_id": 15 }, "minecraft:turtle_egg": { - "protocol_id": 586 + "protocol_id": 587 }, "minecraft:turtle_helmet": { - "protocol_id": 793 + "protocol_id": 794 + }, + "minecraft:turtle_scute": { + "protocol_id": 795 }, "minecraft:turtle_spawn_egg": { - "protocol_id": 1068 + "protocol_id": 1073 }, "minecraft:twisting_vines": { - "protocol_id": 241 + "protocol_id": 242 + }, + "minecraft:vault": { + "protocol_id": 1327 }, "minecraft:verdant_froglight": { - "protocol_id": 1252 + "protocol_id": 1261 }, "minecraft:vex_armor_trim_smithing_template": { - "protocol_id": 1264 + "protocol_id": 1273 }, "minecraft:vex_spawn_egg": { - "protocol_id": 1069 + "protocol_id": 1074 }, "minecraft:villager_spawn_egg": { - "protocol_id": 1070 + "protocol_id": 1075 }, "minecraft:vindicator_spawn_egg": { - "protocol_id": 1071 + "protocol_id": 1076 }, "minecraft:vine": { - "protocol_id": 358 + "protocol_id": 359 }, "minecraft:wandering_trader_spawn_egg": { - "protocol_id": 1072 + "protocol_id": 1077 }, "minecraft:ward_armor_trim_smithing_template": { - "protocol_id": 1262 + "protocol_id": 1271 }, "minecraft:warden_spawn_egg": { - "protocol_id": 1073 + "protocol_id": 1078 }, "minecraft:warped_button": { - "protocol_id": 693 + "protocol_id": 694 }, "minecraft:warped_door": { - "protocol_id": 720 + "protocol_id": 721 }, "minecraft:warped_fence": { - "protocol_id": 320 + "protocol_id": 321 }, "minecraft:warped_fence_gate": { - "protocol_id": 759 + "protocol_id": 760 }, "minecraft:warped_fungus": { - "protocol_id": 236 + "protocol_id": 237 }, "minecraft:warped_fungus_on_a_stick": { - "protocol_id": 771 + "protocol_id": 772 }, "minecraft:warped_hanging_sign": { - "protocol_id": 904 + "protocol_id": 907 }, "minecraft:warped_hyphae": { - "protocol_id": 174 + "protocol_id": 175 }, "minecraft:warped_nylium": { "protocol_id": 34 @@ -3618,321 +3666,327 @@ "protocol_id": 46 }, "minecraft:warped_pressure_plate": { - "protocol_id": 708 + "protocol_id": 709 }, "minecraft:warped_roots": { - "protocol_id": 238 + "protocol_id": 239 }, "minecraft:warped_sign": { - "protocol_id": 893 + "protocol_id": 896 }, "minecraft:warped_slab": { - "protocol_id": 262 + "protocol_id": 263 }, "minecraft:warped_stairs": { - "protocol_id": 393 + "protocol_id": 394 }, "minecraft:warped_stem": { - "protocol_id": 142 + "protocol_id": 143 }, "minecraft:warped_trapdoor": { - "protocol_id": 740 + "protocol_id": 741 }, "minecraft:warped_wart_block": { - "protocol_id": 517 + "protocol_id": 518 }, "minecraft:water_bucket": { - "protocol_id": 906 + "protocol_id": 909 }, "minecraft:waxed_chiseled_copper": { - "protocol_id": 115 + "protocol_id": 116 }, "minecraft:waxed_copper_block": { - "protocol_id": 111 + "protocol_id": 112 }, "minecraft:waxed_copper_bulb": { - "protocol_id": 1306 + "protocol_id": 1320 }, "minecraft:waxed_copper_door": { - "protocol_id": 725 + "protocol_id": 726 }, "minecraft:waxed_copper_grate": { - "protocol_id": 1298 + "protocol_id": 1312 }, "minecraft:waxed_copper_trapdoor": { - "protocol_id": 745 + "protocol_id": 746 }, "minecraft:waxed_cut_copper": { - "protocol_id": 119 + "protocol_id": 120 }, "minecraft:waxed_cut_copper_slab": { - "protocol_id": 127 + "protocol_id": 128 }, "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 123 + "protocol_id": 124 }, "minecraft:waxed_exposed_chiseled_copper": { - "protocol_id": 116 + "protocol_id": 117 }, "minecraft:waxed_exposed_copper": { - "protocol_id": 112 + "protocol_id": 113 }, "minecraft:waxed_exposed_copper_bulb": { - "protocol_id": 1307 + "protocol_id": 1321 }, "minecraft:waxed_exposed_copper_door": { - "protocol_id": 726 + "protocol_id": 727 }, "minecraft:waxed_exposed_copper_grate": { - "protocol_id": 1299 + "protocol_id": 1313 }, "minecraft:waxed_exposed_copper_trapdoor": { - "protocol_id": 746 + "protocol_id": 747 }, "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 120 + "protocol_id": 121 }, "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 128 + "protocol_id": 129 }, "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 124 + "protocol_id": 125 }, "minecraft:waxed_oxidized_chiseled_copper": { - "protocol_id": 118 + "protocol_id": 119 }, "minecraft:waxed_oxidized_copper": { - "protocol_id": 114 + "protocol_id": 115 }, "minecraft:waxed_oxidized_copper_bulb": { - "protocol_id": 1309 + "protocol_id": 1323 }, "minecraft:waxed_oxidized_copper_door": { - "protocol_id": 728 + "protocol_id": 729 }, "minecraft:waxed_oxidized_copper_grate": { - "protocol_id": 1301 + "protocol_id": 1315 }, "minecraft:waxed_oxidized_copper_trapdoor": { - "protocol_id": 748 + "protocol_id": 749 }, "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 122 + "protocol_id": 123 }, "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 130 + "protocol_id": 131 }, "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 126 + "protocol_id": 127 }, "minecraft:waxed_weathered_chiseled_copper": { - "protocol_id": 117 + "protocol_id": 118 }, "minecraft:waxed_weathered_copper": { - "protocol_id": 113 + "protocol_id": 114 }, "minecraft:waxed_weathered_copper_bulb": { - "protocol_id": 1308 + "protocol_id": 1322 }, "minecraft:waxed_weathered_copper_door": { - "protocol_id": 727 + "protocol_id": 728 }, "minecraft:waxed_weathered_copper_grate": { - "protocol_id": 1300 + "protocol_id": 1314 }, "minecraft:waxed_weathered_copper_trapdoor": { - "protocol_id": 747 + "protocol_id": 748 }, "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 121 + "protocol_id": 122 }, "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 129 + "protocol_id": 130 }, "minecraft:waxed_weathered_cut_copper_stairs": { - "protocol_id": 125 + "protocol_id": 126 }, "minecraft:wayfinder_armor_trim_smithing_template": { - "protocol_id": 1269 + "protocol_id": 1278 }, "minecraft:weathered_chiseled_copper": { - "protocol_id": 97 + "protocol_id": 98 }, "minecraft:weathered_copper": { - "protocol_id": 93 + "protocol_id": 94 }, "minecraft:weathered_copper_bulb": { - "protocol_id": 1304 + "protocol_id": 1318 }, "minecraft:weathered_copper_door": { - "protocol_id": 723 + "protocol_id": 724 }, "minecraft:weathered_copper_grate": { - "protocol_id": 1296 + "protocol_id": 1310 }, "minecraft:weathered_copper_trapdoor": { - "protocol_id": 743 + "protocol_id": 744 }, "minecraft:weathered_cut_copper": { - "protocol_id": 101 + "protocol_id": 102 }, "minecraft:weathered_cut_copper_slab": { - "protocol_id": 109 + "protocol_id": 110 }, "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 105 + "protocol_id": 106 }, "minecraft:weeping_vines": { - "protocol_id": 240 + "protocol_id": 241 }, "minecraft:wet_sponge": { - "protocol_id": 186 + "protocol_id": 187 }, "minecraft:wheat": { - "protocol_id": 851 + "protocol_id": 854 }, "minecraft:wheat_seeds": { - "protocol_id": 850 + "protocol_id": 853 }, "minecraft:white_banner": { - "protocol_id": 1126 + "protocol_id": 1133 }, "minecraft:white_bed": { - "protocol_id": 961 + "protocol_id": 964 }, "minecraft:white_candle": { - "protocol_id": 1230 + "protocol_id": 1239 }, "minecraft:white_carpet": { - "protocol_id": 445 + "protocol_id": 446 }, "minecraft:white_concrete": { - "protocol_id": 554 + "protocol_id": 555 }, "minecraft:white_concrete_powder": { - "protocol_id": 570 + "protocol_id": 571 }, "minecraft:white_dye": { - "protocol_id": 941 + "protocol_id": 944 }, "minecraft:white_glazed_terracotta": { - "protocol_id": 538 + "protocol_id": 539 }, "minecraft:white_shulker_box": { - "protocol_id": 522 + "protocol_id": 523 }, "minecraft:white_stained_glass": { - "protocol_id": 470 + "protocol_id": 471 }, "minecraft:white_stained_glass_pane": { - "protocol_id": 486 + "protocol_id": 487 }, "minecraft:white_terracotta": { - "protocol_id": 426 + "protocol_id": 427 }, "minecraft:white_tulip": { - "protocol_id": 224 + "protocol_id": 225 }, "minecraft:white_wool": { - "protocol_id": 201 + "protocol_id": 202 }, "minecraft:wild_armor_trim_smithing_template": { - "protocol_id": 1261 + "protocol_id": 1270 + }, + "minecraft:wind_charge": { + "protocol_id": 1090 }, "minecraft:witch_spawn_egg": { - "protocol_id": 1074 + "protocol_id": 1079 }, "minecraft:wither_rose": { - "protocol_id": 229 + "protocol_id": 230 }, "minecraft:wither_skeleton_skull": { - "protocol_id": 1097 + "protocol_id": 1104 }, "minecraft:wither_skeleton_spawn_egg": { - "protocol_id": 1076 + "protocol_id": 1081 }, "minecraft:wither_spawn_egg": { - "protocol_id": 1075 + "protocol_id": 1080 + }, + "minecraft:wolf_armor": { + "protocol_id": 797 }, "minecraft:wolf_spawn_egg": { - "protocol_id": 1077 + "protocol_id": 1082 }, "minecraft:wooden_axe": { - "protocol_id": 817 + "protocol_id": 820 }, "minecraft:wooden_hoe": { - "protocol_id": 818 + "protocol_id": 821 }, "minecraft:wooden_pickaxe": { - "protocol_id": 816 + "protocol_id": 819 }, "minecraft:wooden_shovel": { - "protocol_id": 815 + "protocol_id": 818 }, "minecraft:wooden_sword": { - "protocol_id": 814 + "protocol_id": 817 }, "minecraft:writable_book": { - "protocol_id": 1085 + "protocol_id": 1091 }, "minecraft:written_book": { - "protocol_id": 1086 + "protocol_id": 1092 }, "minecraft:yellow_banner": { - "protocol_id": 1130 + "protocol_id": 1137 }, "minecraft:yellow_bed": { - "protocol_id": 965 + "protocol_id": 968 }, "minecraft:yellow_candle": { - "protocol_id": 1234 + "protocol_id": 1243 }, "minecraft:yellow_carpet": { - "protocol_id": 449 + "protocol_id": 450 }, "minecraft:yellow_concrete": { - "protocol_id": 558 + "protocol_id": 559 }, "minecraft:yellow_concrete_powder": { - "protocol_id": 574 + "protocol_id": 575 }, "minecraft:yellow_dye": { - "protocol_id": 945 + "protocol_id": 948 }, "minecraft:yellow_glazed_terracotta": { - "protocol_id": 542 + "protocol_id": 543 }, "minecraft:yellow_shulker_box": { - "protocol_id": 526 + "protocol_id": 527 }, "minecraft:yellow_stained_glass": { - "protocol_id": 474 + "protocol_id": 475 }, "minecraft:yellow_stained_glass_pane": { - "protocol_id": 490 + "protocol_id": 491 }, "minecraft:yellow_terracotta": { - "protocol_id": 430 + "protocol_id": 431 }, "minecraft:yellow_wool": { - "protocol_id": 205 + "protocol_id": 206 }, "minecraft:zoglin_spawn_egg": { - "protocol_id": 1078 + "protocol_id": 1083 }, "minecraft:zombie_head": { - "protocol_id": 1099 + "protocol_id": 1106 }, "minecraft:zombie_horse_spawn_egg": { - "protocol_id": 1080 + "protocol_id": 1085 }, "minecraft:zombie_spawn_egg": { - "protocol_id": 1079 + "protocol_id": 1084 }, "minecraft:zombie_villager_spawn_egg": { - "protocol_id": 1081 + "protocol_id": 1086 }, "minecraft:zombified_piglin_spawn_egg": { - "protocol_id": 1082 + "protocol_id": 1087 } } diff --git a/Obsidian/Assets/recipes.json b/Obsidian/Assets/recipes.json index f21aea02b..b73e9ce37 100644 --- a/Obsidian/Assets/recipes.json +++ b/Obsidian/Assets/recipes.json @@ -15,8 +15,7 @@ ], "result": { "count": 1, - "item": "minecraft:acacia_boat", - "tag": null + "id": "minecraft:acacia_boat" }, "type": "minecraft:crafting_shaped" }, @@ -30,8 +29,7 @@ ], "result": { "count": 1, - "item": "minecraft:acacia_button", - "tag": null + "id": "minecraft:acacia_button" }, "type": "minecraft:crafting_shapeless" }, @@ -48,8 +46,7 @@ ], "result": { "count": 1, - "item": "minecraft:acacia_chest_boat", - "tag": null + "id": "minecraft:acacia_chest_boat" }, "type": "minecraft:crafting_shapeless" }, @@ -70,8 +67,7 @@ ], "result": { "count": 3, - "item": "minecraft:acacia_door", - "tag": null + "id": "minecraft:acacia_door" }, "type": "minecraft:crafting_shaped" }, @@ -96,8 +92,7 @@ ], "result": { "count": 3, - "item": "minecraft:acacia_fence", - "tag": null + "id": "minecraft:acacia_fence" }, "type": "minecraft:crafting_shaped" }, @@ -122,8 +117,7 @@ ], "result": { "count": 1, - "item": "minecraft:acacia_fence_gate", - "tag": null + "id": "minecraft:acacia_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -149,8 +143,7 @@ ], "result": { "count": 6, - "item": "minecraft:acacia_hanging_sign", - "tag": null + "id": "minecraft:acacia_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -164,8 +157,7 @@ ], "result": { "count": 4, - "item": "minecraft:acacia_planks", - "tag": null + "id": "minecraft:acacia_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -184,8 +176,7 @@ ], "result": { "count": 1, - "item": "minecraft:acacia_pressure_plate", - "tag": null + "id": "minecraft:acacia_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -211,8 +202,7 @@ ], "result": { "count": 3, - "item": "minecraft:acacia_sign", - "tag": null + "id": "minecraft:acacia_sign" }, "type": "minecraft:crafting_shaped" }, @@ -231,8 +221,7 @@ ], "result": { "count": 6, - "item": "minecraft:acacia_slab", - "tag": null + "id": "minecraft:acacia_slab" }, "type": "minecraft:crafting_shaped" }, @@ -253,8 +242,7 @@ ], "result": { "count": 4, - "item": "minecraft:acacia_stairs", - "tag": null + "id": "minecraft:acacia_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -274,8 +262,7 @@ ], "result": { "count": 2, - "item": "minecraft:acacia_trapdoor", - "tag": null + "id": "minecraft:acacia_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -295,8 +282,7 @@ ], "result": { "count": 3, - "item": "minecraft:acacia_wood", - "tag": null + "id": "minecraft:acacia_wood" }, "type": "minecraft:crafting_shaped" }, @@ -326,8 +312,7 @@ ], "result": { "count": 6, - "item": "minecraft:activator_rail", - "tag": null + "id": "minecraft:activator_rail" }, "type": "minecraft:crafting_shaped" }, @@ -346,8 +331,7 @@ ], "result": { "count": 1, - "item": "minecraft:amethyst_block", - "tag": null + "id": "minecraft:amethyst_block" }, "type": "minecraft:crafting_shaped" }, @@ -363,8 +347,7 @@ ], "result": { "count": 2, - "item": "minecraft:andesite", - "tag": null + "id": "minecraft:andesite" }, "type": "minecraft:crafting_shapeless" }, @@ -382,19 +365,20 @@ ], "result": { "count": 6, - "item": "minecraft:andesite_slab", - "tag": null + "id": "minecraft:andesite_slab" }, "type": "minecraft:crafting_shaped" }, "andesite_slab_from_andesite_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:andesite", "tag": null }, - "result": "minecraft:andesite_slab", + "result": { + "count": 2, + "id": "minecraft:andesite_slab" + }, "type": "minecraft:stonecutting" }, "andesite_stairs": { @@ -413,19 +397,20 @@ ], "result": { "count": 4, - "item": "minecraft:andesite_stairs", - "tag": null + "id": "minecraft:andesite_stairs" }, "type": "minecraft:crafting_shaped" }, "andesite_stairs_from_andesite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:andesite", "tag": null }, - "result": "minecraft:andesite_stairs", + "result": { + "count": 1, + "id": "minecraft:andesite_stairs" + }, "type": "minecraft:stonecutting" }, "andesite_wall": { @@ -443,19 +428,20 @@ ], "result": { "count": 6, - "item": "minecraft:andesite_wall", - "tag": null + "id": "minecraft:andesite_wall" }, "type": "minecraft:crafting_shaped" }, "andesite_wall_from_andesite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:andesite", "tag": null }, - "result": "minecraft:andesite_wall", + "result": { + "count": 1, + "id": "minecraft:andesite_wall" + }, "type": "minecraft:stonecutting" }, "anvil": { @@ -479,8 +465,7 @@ ], "result": { "count": 1, - "item": "minecraft:anvil", - "tag": null + "id": "minecraft:anvil" }, "type": "minecraft:crafting_shaped" }, @@ -509,8 +494,7 @@ ], "result": { "count": 1, - "item": "minecraft:armor_stand", - "tag": null + "id": "minecraft:armor_stand" }, "type": "minecraft:crafting_shaped" }, @@ -540,8 +524,7 @@ ], "result": { "count": 4, - "item": "minecraft:arrow", - "tag": null + "id": "minecraft:arrow" }, "type": "minecraft:crafting_shaped" }, @@ -554,7 +537,9 @@ "item": "minecraft:potato", "tag": null }, - "result": "minecraft:baked_potato", + "result": { + "id": "minecraft:baked_potato" + }, "type": "minecraft:smelting" }, "baked_potato_from_campfire_cooking": { @@ -566,7 +551,9 @@ "item": "minecraft:potato", "tag": null }, - "result": "minecraft:baked_potato", + "result": { + "id": "minecraft:baked_potato" + }, "type": "minecraft:campfire_cooking" }, "baked_potato_from_smoking": { @@ -578,7 +565,9 @@ "item": "minecraft:potato", "tag": null }, - "result": "minecraft:baked_potato", + "result": { + "id": "minecraft:baked_potato" + }, "type": "minecraft:smoking" }, "bamboo_block": { @@ -614,8 +603,7 @@ ], "result": { "count": 1, - "item": "minecraft:bamboo_block", - "tag": null + "id": "minecraft:bamboo_block" }, "type": "minecraft:crafting_shapeless" }, @@ -629,8 +617,7 @@ ], "result": { "count": 1, - "item": "minecraft:bamboo_button", - "tag": null + "id": "minecraft:bamboo_button" }, "type": "minecraft:crafting_shapeless" }, @@ -647,8 +634,7 @@ ], "result": { "count": 1, - "item": "minecraft:bamboo_chest_raft", - "tag": null + "id": "minecraft:bamboo_chest_raft" }, "type": "minecraft:crafting_shapeless" }, @@ -669,8 +655,7 @@ ], "result": { "count": 3, - "item": "minecraft:bamboo_door", - "tag": null + "id": "minecraft:bamboo_door" }, "type": "minecraft:crafting_shaped" }, @@ -695,8 +680,7 @@ ], "result": { "count": 3, - "item": "minecraft:bamboo_fence", - "tag": null + "id": "minecraft:bamboo_fence" }, "type": "minecraft:crafting_shaped" }, @@ -721,8 +705,7 @@ ], "result": { "count": 1, - "item": "minecraft:bamboo_fence_gate", - "tag": null + "id": "minecraft:bamboo_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -748,8 +731,7 @@ ], "result": { "count": 6, - "item": "minecraft:bamboo_hanging_sign", - "tag": null + "id": "minecraft:bamboo_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -768,8 +750,7 @@ ], "result": { "count": 1, - "item": "minecraft:bamboo_mosaic", - "tag": null + "id": "minecraft:bamboo_mosaic" }, "type": "minecraft:crafting_shaped" }, @@ -787,8 +768,7 @@ ], "result": { "count": 6, - "item": "minecraft:bamboo_mosaic_slab", - "tag": null + "id": "minecraft:bamboo_mosaic_slab" }, "type": "minecraft:crafting_shaped" }, @@ -808,8 +788,7 @@ ], "result": { "count": 4, - "item": "minecraft:bamboo_mosaic_stairs", - "tag": null + "id": "minecraft:bamboo_mosaic_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -823,8 +802,7 @@ ], "result": { "count": 2, - "item": "minecraft:bamboo_planks", - "tag": null + "id": "minecraft:bamboo_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -843,8 +821,7 @@ ], "result": { "count": 1, - "item": "minecraft:bamboo_pressure_plate", - "tag": null + "id": "minecraft:bamboo_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -864,8 +841,7 @@ ], "result": { "count": 1, - "item": "minecraft:bamboo_raft", - "tag": null + "id": "minecraft:bamboo_raft" }, "type": "minecraft:crafting_shaped" }, @@ -891,8 +867,7 @@ ], "result": { "count": 3, - "item": "minecraft:bamboo_sign", - "tag": null + "id": "minecraft:bamboo_sign" }, "type": "minecraft:crafting_shaped" }, @@ -911,8 +886,7 @@ ], "result": { "count": 6, - "item": "minecraft:bamboo_slab", - "tag": null + "id": "minecraft:bamboo_slab" }, "type": "minecraft:crafting_shaped" }, @@ -933,8 +907,7 @@ ], "result": { "count": 4, - "item": "minecraft:bamboo_stairs", - "tag": null + "id": "minecraft:bamboo_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -954,8 +927,7 @@ ], "result": { "count": 2, - "item": "minecraft:bamboo_trapdoor", - "tag": null + "id": "minecraft:bamboo_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -982,8 +954,7 @@ ], "result": { "count": 1, - "item": "minecraft:barrel", - "tag": null + "id": "minecraft:barrel" }, "type": "minecraft:crafting_shaped" }, @@ -1013,8 +984,7 @@ ], "result": { "count": 1, - "item": "minecraft:beacon", - "tag": null + "id": "minecraft:beacon" }, "type": "minecraft:crafting_shaped" }, @@ -1038,8 +1008,7 @@ ], "result": { "count": 1, - "item": "minecraft:beehive", - "tag": null + "id": "minecraft:beehive" }, "type": "minecraft:crafting_shaped" }, @@ -1070,8 +1039,7 @@ ], "result": { "count": 1, - "item": "minecraft:beetroot_soup", - "tag": null + "id": "minecraft:beetroot_soup" }, "type": "minecraft:crafting_shapeless" }, @@ -1091,8 +1059,7 @@ ], "result": { "count": 1, - "item": "minecraft:birch_boat", - "tag": null + "id": "minecraft:birch_boat" }, "type": "minecraft:crafting_shaped" }, @@ -1106,8 +1073,7 @@ ], "result": { "count": 1, - "item": "minecraft:birch_button", - "tag": null + "id": "minecraft:birch_button" }, "type": "minecraft:crafting_shapeless" }, @@ -1124,8 +1090,7 @@ ], "result": { "count": 1, - "item": "minecraft:birch_chest_boat", - "tag": null + "id": "minecraft:birch_chest_boat" }, "type": "minecraft:crafting_shapeless" }, @@ -1146,8 +1111,7 @@ ], "result": { "count": 3, - "item": "minecraft:birch_door", - "tag": null + "id": "minecraft:birch_door" }, "type": "minecraft:crafting_shaped" }, @@ -1172,8 +1136,7 @@ ], "result": { "count": 3, - "item": "minecraft:birch_fence", - "tag": null + "id": "minecraft:birch_fence" }, "type": "minecraft:crafting_shaped" }, @@ -1198,8 +1161,7 @@ ], "result": { "count": 1, - "item": "minecraft:birch_fence_gate", - "tag": null + "id": "minecraft:birch_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -1225,8 +1187,7 @@ ], "result": { "count": 6, - "item": "minecraft:birch_hanging_sign", - "tag": null + "id": "minecraft:birch_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -1240,8 +1201,7 @@ ], "result": { "count": 4, - "item": "minecraft:birch_planks", - "tag": null + "id": "minecraft:birch_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -1260,8 +1220,7 @@ ], "result": { "count": 1, - "item": "minecraft:birch_pressure_plate", - "tag": null + "id": "minecraft:birch_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -1287,8 +1246,7 @@ ], "result": { "count": 3, - "item": "minecraft:birch_sign", - "tag": null + "id": "minecraft:birch_sign" }, "type": "minecraft:crafting_shaped" }, @@ -1307,8 +1265,7 @@ ], "result": { "count": 6, - "item": "minecraft:birch_slab", - "tag": null + "id": "minecraft:birch_slab" }, "type": "minecraft:crafting_shaped" }, @@ -1329,8 +1286,7 @@ ], "result": { "count": 4, - "item": "minecraft:birch_stairs", - "tag": null + "id": "minecraft:birch_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -1350,8 +1306,7 @@ ], "result": { "count": 2, - "item": "minecraft:birch_trapdoor", - "tag": null + "id": "minecraft:birch_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -1371,8 +1326,7 @@ ], "result": { "count": 3, - "item": "minecraft:birch_wood", - "tag": null + "id": "minecraft:birch_wood" }, "type": "minecraft:crafting_shaped" }, @@ -1398,8 +1352,7 @@ ], "result": { "count": 1, - "item": "minecraft:black_banner", - "tag": null + "id": "minecraft:black_banner" }, "type": "minecraft:crafting_shaped" }, @@ -1423,8 +1376,7 @@ ], "result": { "count": 1, - "item": "minecraft:black_bed", - "tag": null + "id": "minecraft:black_bed" }, "type": "minecraft:crafting_shaped" }, @@ -1441,8 +1393,7 @@ ], "result": { "count": 1, - "item": "minecraft:black_candle", - "tag": null + "id": "minecraft:black_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -1461,8 +1412,7 @@ ], "result": { "count": 3, - "item": "minecraft:black_carpet", - "tag": null + "id": "minecraft:black_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -1500,8 +1450,7 @@ ], "result": { "count": 8, - "item": "minecraft:black_concrete_powder", - "tag": null + "id": "minecraft:black_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -1515,8 +1464,7 @@ ], "result": { "count": 1, - "item": "minecraft:black_dye", - "tag": null + "id": "minecraft:black_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -1530,8 +1478,7 @@ ], "result": { "count": 1, - "item": "minecraft:black_dye", - "tag": null + "id": "minecraft:black_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -1544,7 +1491,9 @@ "item": "minecraft:black_terracotta", "tag": null }, - "result": "minecraft:black_glazed_terracotta", + "result": { + "id": "minecraft:black_glazed_terracotta" + }, "type": "minecraft:smelting" }, "black_stained_glass": { @@ -1569,8 +1518,7 @@ ], "result": { "count": 8, - "item": "minecraft:black_stained_glass", - "tag": null + "id": "minecraft:black_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -1590,8 +1538,7 @@ ], "result": { "count": 16, - "item": "minecraft:black_stained_glass_pane", - "tag": null + "id": "minecraft:black_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -1617,8 +1564,7 @@ ], "result": { "count": 8, - "item": "minecraft:black_stained_glass_pane", - "tag": null + "id": "minecraft:black_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -1644,8 +1590,7 @@ ], "result": { "count": 8, - "item": "minecraft:black_terracotta", - "tag": null + "id": "minecraft:black_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -1663,19 +1608,20 @@ ], "result": { "count": 6, - "item": "minecraft:blackstone_slab", - "tag": null + "id": "minecraft:blackstone_slab" }, "type": "minecraft:crafting_shaped" }, "blackstone_slab_from_blackstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:blackstone_slab", + "result": { + "count": 2, + "id": "minecraft:blackstone_slab" + }, "type": "minecraft:stonecutting" }, "blackstone_stairs": { @@ -1694,19 +1640,20 @@ ], "result": { "count": 4, - "item": "minecraft:blackstone_stairs", - "tag": null + "id": "minecraft:blackstone_stairs" }, "type": "minecraft:crafting_shaped" }, "blackstone_stairs_from_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:blackstone_stairs", + "result": { + "count": 1, + "id": "minecraft:blackstone_stairs" + }, "type": "minecraft:stonecutting" }, "blackstone_wall": { @@ -1724,19 +1671,20 @@ ], "result": { "count": 6, - "item": "minecraft:blackstone_wall", - "tag": null + "id": "minecraft:blackstone_wall" }, "type": "minecraft:crafting_shaped" }, "blackstone_wall_from_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:blackstone_wall", + "result": { + "count": 1, + "id": "minecraft:blackstone_wall" + }, "type": "minecraft:stonecutting" }, "blast_furnace": { @@ -1765,8 +1713,7 @@ ], "result": { "count": 1, - "item": "minecraft:blast_furnace", - "tag": null + "id": "minecraft:blast_furnace" }, "type": "minecraft:crafting_shaped" }, @@ -1779,8 +1726,7 @@ ], "result": { "count": 2, - "item": "minecraft:blaze_powder", - "tag": null + "id": "minecraft:blaze_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -1806,8 +1752,7 @@ ], "result": { "count": 1, - "item": "minecraft:blue_banner", - "tag": null + "id": "minecraft:blue_banner" }, "type": "minecraft:crafting_shaped" }, @@ -1831,8 +1776,7 @@ ], "result": { "count": 1, - "item": "minecraft:blue_bed", - "tag": null + "id": "minecraft:blue_bed" }, "type": "minecraft:crafting_shaped" }, @@ -1849,8 +1793,7 @@ ], "result": { "count": 1, - "item": "minecraft:blue_candle", - "tag": null + "id": "minecraft:blue_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -1869,8 +1812,7 @@ ], "result": { "count": 3, - "item": "minecraft:blue_carpet", - "tag": null + "id": "minecraft:blue_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -1908,8 +1850,7 @@ ], "result": { "count": 8, - "item": "minecraft:blue_concrete_powder", - "tag": null + "id": "minecraft:blue_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -1923,8 +1864,7 @@ ], "result": { "count": 1, - "item": "minecraft:blue_dye", - "tag": null + "id": "minecraft:blue_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -1938,8 +1878,7 @@ ], "result": { "count": 1, - "item": "minecraft:blue_dye", - "tag": null + "id": "minecraft:blue_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -1952,7 +1891,9 @@ "item": "minecraft:blue_terracotta", "tag": null }, - "result": "minecraft:blue_glazed_terracotta", + "result": { + "id": "minecraft:blue_glazed_terracotta" + }, "type": "minecraft:smelting" }, "blue_ice": { @@ -1988,8 +1929,7 @@ ], "result": { "count": 1, - "item": "minecraft:blue_ice", - "tag": null + "id": "minecraft:blue_ice" }, "type": "minecraft:crafting_shapeless" }, @@ -2015,8 +1955,7 @@ ], "result": { "count": 8, - "item": "minecraft:blue_stained_glass", - "tag": null + "id": "minecraft:blue_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -2036,8 +1975,7 @@ ], "result": { "count": 16, - "item": "minecraft:blue_stained_glass_pane", - "tag": null + "id": "minecraft:blue_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -2063,8 +2001,7 @@ ], "result": { "count": 8, - "item": "minecraft:blue_stained_glass_pane", - "tag": null + "id": "minecraft:blue_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -2090,8 +2027,7 @@ ], "result": { "count": 8, - "item": "minecraft:blue_terracotta", - "tag": null + "id": "minecraft:blue_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -2111,8 +2047,7 @@ ], "result": { "count": 1, - "item": "minecraft:bone_block", - "tag": null + "id": "minecraft:bone_block" }, "type": "minecraft:crafting_shaped" }, @@ -2126,8 +2061,7 @@ ], "result": { "count": 3, - "item": "minecraft:bone_meal", - "tag": null + "id": "minecraft:bone_meal" }, "type": "minecraft:crafting_shapeless" }, @@ -2141,8 +2075,7 @@ ], "result": { "count": 9, - "item": "minecraft:bone_meal", - "tag": null + "id": "minecraft:bone_meal" }, "type": "minecraft:crafting_shapeless" }, @@ -2164,8 +2097,7 @@ ], "result": { "count": 1, - "item": "minecraft:book", - "tag": null + "id": "minecraft:book" }, "type": "minecraft:crafting_shapeless" }, @@ -2193,8 +2125,7 @@ ], "result": { "count": 1, - "item": "minecraft:bookshelf", - "tag": null + "id": "minecraft:bookshelf" }, "type": "minecraft:crafting_shaped" }, @@ -2219,8 +2150,7 @@ ], "result": { "count": 1, - "item": "minecraft:bow", - "tag": null + "id": "minecraft:bow" }, "type": "minecraft:crafting_shaped" }, @@ -2238,8 +2168,7 @@ ], "result": { "count": 4, - "item": "minecraft:bowl", - "tag": null + "id": "minecraft:bowl" }, "type": "minecraft:crafting_shaped" }, @@ -2257,8 +2186,7 @@ ], "result": { "count": 1, - "item": "minecraft:bread", - "tag": null + "id": "minecraft:bread" }, "type": "minecraft:crafting_shaped" }, @@ -2281,8 +2209,7 @@ ], "result": { "count": 1, - "item": "minecraft:brewing_stand", - "tag": null + "id": "minecraft:brewing_stand" }, "type": "minecraft:crafting_shaped" }, @@ -2295,7 +2222,9 @@ "item": "minecraft:clay_ball", "tag": null }, - "result": "minecraft:brick", + "result": { + "id": "minecraft:brick" + }, "type": "minecraft:smelting" }, "brick_slab": { @@ -2312,19 +2241,20 @@ ], "result": { "count": 6, - "item": "minecraft:brick_slab", - "tag": null + "id": "minecraft:brick_slab" }, "type": "minecraft:crafting_shaped" }, "brick_slab_from_bricks_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:bricks", "tag": null }, - "result": "minecraft:brick_slab", + "result": { + "count": 2, + "id": "minecraft:brick_slab" + }, "type": "minecraft:stonecutting" }, "brick_stairs": { @@ -2343,19 +2273,20 @@ ], "result": { "count": 4, - "item": "minecraft:brick_stairs", - "tag": null + "id": "minecraft:brick_stairs" }, "type": "minecraft:crafting_shaped" }, "brick_stairs_from_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:bricks", "tag": null }, - "result": "minecraft:brick_stairs", + "result": { + "count": 1, + "id": "minecraft:brick_stairs" + }, "type": "minecraft:stonecutting" }, "brick_wall": { @@ -2373,19 +2304,20 @@ ], "result": { "count": 6, - "item": "minecraft:brick_wall", - "tag": null + "id": "minecraft:brick_wall" }, "type": "minecraft:crafting_shaped" }, "brick_wall_from_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:bricks", "tag": null }, - "result": "minecraft:brick_wall", + "result": { + "count": 1, + "id": "minecraft:brick_wall" + }, "type": "minecraft:stonecutting" }, "bricks": { @@ -2403,8 +2335,7 @@ ], "result": { "count": 1, - "item": "minecraft:bricks", - "tag": null + "id": "minecraft:bricks" }, "type": "minecraft:crafting_shaped" }, @@ -2430,8 +2361,7 @@ ], "result": { "count": 1, - "item": "minecraft:brown_banner", - "tag": null + "id": "minecraft:brown_banner" }, "type": "minecraft:crafting_shaped" }, @@ -2455,8 +2385,7 @@ ], "result": { "count": 1, - "item": "minecraft:brown_bed", - "tag": null + "id": "minecraft:brown_bed" }, "type": "minecraft:crafting_shaped" }, @@ -2473,8 +2402,7 @@ ], "result": { "count": 1, - "item": "minecraft:brown_candle", - "tag": null + "id": "minecraft:brown_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -2493,8 +2421,7 @@ ], "result": { "count": 3, - "item": "minecraft:brown_carpet", - "tag": null + "id": "minecraft:brown_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -2532,8 +2459,7 @@ ], "result": { "count": 8, - "item": "minecraft:brown_concrete_powder", - "tag": null + "id": "minecraft:brown_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -2547,8 +2473,7 @@ ], "result": { "count": 1, - "item": "minecraft:brown_dye", - "tag": null + "id": "minecraft:brown_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -2561,7 +2486,9 @@ "item": "minecraft:brown_terracotta", "tag": null }, - "result": "minecraft:brown_glazed_terracotta", + "result": { + "id": "minecraft:brown_glazed_terracotta" + }, "type": "minecraft:smelting" }, "brown_stained_glass": { @@ -2586,8 +2513,7 @@ ], "result": { "count": 8, - "item": "minecraft:brown_stained_glass", - "tag": null + "id": "minecraft:brown_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -2607,8 +2533,7 @@ ], "result": { "count": 16, - "item": "minecraft:brown_stained_glass_pane", - "tag": null + "id": "minecraft:brown_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -2634,8 +2559,7 @@ ], "result": { "count": 8, - "item": "minecraft:brown_stained_glass_pane", - "tag": null + "id": "minecraft:brown_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -2661,8 +2585,7 @@ ], "result": { "count": 8, - "item": "minecraft:brown_terracotta", - "tag": null + "id": "minecraft:brown_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -2692,8 +2615,7 @@ ], "result": { "count": 1, - "item": "minecraft:brush", - "tag": null + "id": "minecraft:brush" }, "type": "minecraft:crafting_shaped" }, @@ -2712,8 +2634,7 @@ ], "result": { "count": 1, - "item": "minecraft:bucket", - "tag": null + "id": "minecraft:bucket" }, "type": "minecraft:crafting_shaped" }, @@ -2748,8 +2669,7 @@ ], "result": { "count": 1, - "item": "minecraft:cake", - "tag": null + "id": "minecraft:cake" }, "type": "minecraft:crafting_shaped" }, @@ -2773,8 +2693,7 @@ ], "result": { "count": 1, - "item": "minecraft:calibrated_sculk_sensor", - "tag": null + "id": "minecraft:calibrated_sculk_sensor" }, "type": "minecraft:crafting_shaped" }, @@ -2802,8 +2721,7 @@ ], "result": { "count": 1, - "item": "minecraft:campfire", - "tag": null + "id": "minecraft:campfire" }, "type": "minecraft:crafting_shaped" }, @@ -2827,8 +2745,7 @@ ], "result": { "count": 1, - "item": "minecraft:candle", - "tag": null + "id": "minecraft:candle" }, "type": "minecraft:crafting_shaped" }, @@ -2852,8 +2769,7 @@ ], "result": { "count": 1, - "item": "minecraft:carrot_on_a_stick", - "tag": null + "id": "minecraft:carrot_on_a_stick" }, "type": "minecraft:crafting_shaped" }, @@ -2877,8 +2793,7 @@ ], "result": { "count": 1, - "item": "minecraft:cartography_table", - "tag": null + "id": "minecraft:cartography_table" }, "type": "minecraft:crafting_shaped" }, @@ -2898,8 +2813,7 @@ ], "result": { "count": 1, - "item": "minecraft:cauldron", - "tag": null + "id": "minecraft:cauldron" }, "type": "minecraft:crafting_shaped" }, @@ -2924,8 +2838,7 @@ ], "result": { "count": 1, - "item": "minecraft:chain", - "tag": null + "id": "minecraft:chain" }, "type": "minecraft:crafting_shaped" }, @@ -2937,7 +2850,9 @@ "count": 1, "tag": "minecraft:logs_that_burn" }, - "result": "minecraft:charcoal", + "result": { + "id": "minecraft:charcoal" + }, "type": "minecraft:smelting" }, "cherry_boat": { @@ -2956,8 +2871,7 @@ ], "result": { "count": 1, - "item": "minecraft:cherry_boat", - "tag": null + "id": "minecraft:cherry_boat" }, "type": "minecraft:crafting_shaped" }, @@ -2971,8 +2885,7 @@ ], "result": { "count": 1, - "item": "minecraft:cherry_button", - "tag": null + "id": "minecraft:cherry_button" }, "type": "minecraft:crafting_shapeless" }, @@ -2989,8 +2902,7 @@ ], "result": { "count": 1, - "item": "minecraft:cherry_chest_boat", - "tag": null + "id": "minecraft:cherry_chest_boat" }, "type": "minecraft:crafting_shapeless" }, @@ -3011,8 +2923,7 @@ ], "result": { "count": 3, - "item": "minecraft:cherry_door", - "tag": null + "id": "minecraft:cherry_door" }, "type": "minecraft:crafting_shaped" }, @@ -3037,8 +2948,7 @@ ], "result": { "count": 3, - "item": "minecraft:cherry_fence", - "tag": null + "id": "minecraft:cherry_fence" }, "type": "minecraft:crafting_shaped" }, @@ -3063,8 +2973,7 @@ ], "result": { "count": 1, - "item": "minecraft:cherry_fence_gate", - "tag": null + "id": "minecraft:cherry_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -3090,8 +2999,7 @@ ], "result": { "count": 6, - "item": "minecraft:cherry_hanging_sign", - "tag": null + "id": "minecraft:cherry_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -3105,8 +3013,7 @@ ], "result": { "count": 4, - "item": "minecraft:cherry_planks", - "tag": null + "id": "minecraft:cherry_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -3125,8 +3032,7 @@ ], "result": { "count": 1, - "item": "minecraft:cherry_pressure_plate", - "tag": null + "id": "minecraft:cherry_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -3152,8 +3058,7 @@ ], "result": { "count": 3, - "item": "minecraft:cherry_sign", - "tag": null + "id": "minecraft:cherry_sign" }, "type": "minecraft:crafting_shaped" }, @@ -3172,8 +3077,7 @@ ], "result": { "count": 6, - "item": "minecraft:cherry_slab", - "tag": null + "id": "minecraft:cherry_slab" }, "type": "minecraft:crafting_shaped" }, @@ -3194,8 +3098,7 @@ ], "result": { "count": 4, - "item": "minecraft:cherry_stairs", - "tag": null + "id": "minecraft:cherry_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -3215,8 +3118,7 @@ ], "result": { "count": 2, - "item": "minecraft:cherry_trapdoor", - "tag": null + "id": "minecraft:cherry_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -3236,8 +3138,7 @@ ], "result": { "count": 3, - "item": "minecraft:cherry_wood", - "tag": null + "id": "minecraft:cherry_wood" }, "type": "minecraft:crafting_shaped" }, @@ -3256,8 +3157,7 @@ ], "result": { "count": 1, - "item": "minecraft:chest", - "tag": null + "id": "minecraft:chest" }, "type": "minecraft:crafting_shaped" }, @@ -3273,8 +3173,7 @@ ], "result": { "count": 1, - "item": "minecraft:chest_minecart", - "tag": null + "id": "minecraft:chest_minecart" }, "type": "minecraft:crafting_shapeless" }, @@ -3297,8 +3196,7 @@ ], "result": { "count": 1, - "item": "minecraft:chiseled_bookshelf", - "tag": null + "id": "minecraft:chiseled_bookshelf" }, "type": "minecraft:crafting_shaped" }, @@ -3317,19 +3215,20 @@ ], "result": { "count": 1, - "item": "minecraft:chiseled_deepslate", - "tag": null + "id": "minecraft:chiseled_deepslate" }, "type": "minecraft:crafting_shaped" }, "chiseled_deepslate_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:chiseled_deepslate", + "result": { + "count": 1, + "id": "minecraft:chiseled_deepslate" + }, "type": "minecraft:stonecutting" }, "chiseled_nether_bricks": { @@ -3347,19 +3246,20 @@ ], "result": { "count": 1, - "item": "minecraft:chiseled_nether_bricks", - "tag": null + "id": "minecraft:chiseled_nether_bricks" }, "type": "minecraft:crafting_shaped" }, "chiseled_nether_bricks_from_nether_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:nether_bricks", "tag": null }, - "result": "minecraft:chiseled_nether_bricks", + "result": { + "count": 1, + "id": "minecraft:chiseled_nether_bricks" + }, "type": "minecraft:stonecutting" }, "chiseled_polished_blackstone": { @@ -3377,29 +3277,32 @@ ], "result": { "count": 1, - "item": "minecraft:chiseled_polished_blackstone", - "tag": null + "id": "minecraft:chiseled_polished_blackstone" }, "type": "minecraft:crafting_shaped" }, "chiseled_polished_blackstone_from_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:chiseled_polished_blackstone", + "result": { + "count": 1, + "id": "minecraft:chiseled_polished_blackstone" + }, "type": "minecraft:stonecutting" }, "chiseled_polished_blackstone_from_polished_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone", "tag": null }, - "result": "minecraft:chiseled_polished_blackstone", + "result": { + "count": 1, + "id": "minecraft:chiseled_polished_blackstone" + }, "type": "minecraft:stonecutting" }, "chiseled_quartz_block": { @@ -3417,19 +3320,20 @@ ], "result": { "count": 1, - "item": "minecraft:chiseled_quartz_block", - "tag": null + "id": "minecraft:chiseled_quartz_block" }, "type": "minecraft:crafting_shaped" }, "chiseled_quartz_block_from_quartz_block_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:quartz_block", "tag": null }, - "result": "minecraft:chiseled_quartz_block", + "result": { + "count": 1, + "id": "minecraft:chiseled_quartz_block" + }, "type": "minecraft:stonecutting" }, "chiseled_red_sandstone": { @@ -3447,19 +3351,20 @@ ], "result": { "count": 1, - "item": "minecraft:chiseled_red_sandstone", - "tag": null + "id": "minecraft:chiseled_red_sandstone" }, "type": "minecraft:crafting_shaped" }, "chiseled_red_sandstone_from_red_sandstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:red_sandstone", "tag": null }, - "result": "minecraft:chiseled_red_sandstone", + "result": { + "count": 1, + "id": "minecraft:chiseled_red_sandstone" + }, "type": "minecraft:stonecutting" }, "chiseled_sandstone": { @@ -3477,19 +3382,20 @@ ], "result": { "count": 1, - "item": "minecraft:chiseled_sandstone", - "tag": null + "id": "minecraft:chiseled_sandstone" }, "type": "minecraft:crafting_shaped" }, "chiseled_sandstone_from_sandstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:sandstone", "tag": null }, - "result": "minecraft:chiseled_sandstone", + "result": { + "count": 1, + "id": "minecraft:chiseled_sandstone" + }, "type": "minecraft:stonecutting" }, "chiseled_stone_bricks": { @@ -3507,29 +3413,32 @@ ], "result": { "count": 1, - "item": "minecraft:chiseled_stone_bricks", - "tag": null + "id": "minecraft:chiseled_stone_bricks" }, "type": "minecraft:crafting_shaped" }, "chiseled_stone_bricks_from_stone_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:stone_bricks", "tag": null }, - "result": "minecraft:chiseled_stone_bricks", + "result": { + "count": 1, + "id": "minecraft:chiseled_stone_bricks" + }, "type": "minecraft:stonecutting" }, "chiseled_stone_bricks_stone_from_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:stone", "tag": null }, - "result": "minecraft:chiseled_stone_bricks", + "result": { + "count": 1, + "id": "minecraft:chiseled_stone_bricks" + }, "type": "minecraft:stonecutting" }, "clay": { @@ -3547,8 +3456,7 @@ ], "result": { "count": 1, - "item": "minecraft:clay", - "tag": null + "id": "minecraft:clay" }, "type": "minecraft:crafting_shaped" }, @@ -3573,8 +3481,7 @@ ], "result": { "count": 1, - "item": "minecraft:clock", - "tag": null + "id": "minecraft:clock" }, "type": "minecraft:crafting_shaped" }, @@ -3587,8 +3494,7 @@ ], "result": { "count": 9, - "item": "minecraft:coal", - "tag": null + "id": "minecraft:coal" }, "type": "minecraft:crafting_shapeless" }, @@ -3608,8 +3514,7 @@ ], "result": { "count": 1, - "item": "minecraft:coal_block", - "tag": null + "id": "minecraft:coal_block" }, "type": "minecraft:crafting_shaped" }, @@ -3623,7 +3528,9 @@ "item": "minecraft:coal_ore", "tag": null }, - "result": "minecraft:coal", + "result": { + "id": "minecraft:coal" + }, "type": "minecraft:blasting" }, "coal_from_blasting_deepslate_coal_ore": { @@ -3636,7 +3543,9 @@ "item": "minecraft:deepslate_coal_ore", "tag": null }, - "result": "minecraft:coal", + "result": { + "id": "minecraft:coal" + }, "type": "minecraft:blasting" }, "coal_from_smelting_coal_ore": { @@ -3649,7 +3558,9 @@ "item": "minecraft:coal_ore", "tag": null }, - "result": "minecraft:coal", + "result": { + "id": "minecraft:coal" + }, "type": "minecraft:smelting" }, "coal_from_smelting_deepslate_coal_ore": { @@ -3662,7 +3573,9 @@ "item": "minecraft:deepslate_coal_ore", "tag": null }, - "result": "minecraft:coal", + "result": { + "id": "minecraft:coal" + }, "type": "minecraft:smelting" }, "coarse_dirt": { @@ -3685,8 +3598,7 @@ ], "result": { "count": 4, - "item": "minecraft:coarse_dirt", - "tag": null + "id": "minecraft:coarse_dirt" }, "type": "minecraft:crafting_shaped" }, @@ -3716,8 +3628,7 @@ ], "result": { "count": 2, - "item": "minecraft:coast_armor_trim_smithing_template", - "tag": null + "id": "minecraft:coast_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -3747,19 +3658,20 @@ ], "result": { "count": 6, - "item": "minecraft:cobbled_deepslate_slab", - "tag": null + "id": "minecraft:cobbled_deepslate_slab" }, "type": "minecraft:crafting_shaped" }, "cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:cobbled_deepslate_slab", + "result": { + "count": 2, + "id": "minecraft:cobbled_deepslate_slab" + }, "type": "minecraft:stonecutting" }, "cobbled_deepslate_stairs": { @@ -3778,19 +3690,20 @@ ], "result": { "count": 4, - "item": "minecraft:cobbled_deepslate_stairs", - "tag": null + "id": "minecraft:cobbled_deepslate_stairs" }, "type": "minecraft:crafting_shaped" }, "cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:cobbled_deepslate_stairs", + "result": { + "count": 1, + "id": "minecraft:cobbled_deepslate_stairs" + }, "type": "minecraft:stonecutting" }, "cobbled_deepslate_wall": { @@ -3808,19 +3721,20 @@ ], "result": { "count": 6, - "item": "minecraft:cobbled_deepslate_wall", - "tag": null + "id": "minecraft:cobbled_deepslate_wall" }, "type": "minecraft:crafting_shaped" }, "cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:cobbled_deepslate_wall", + "result": { + "count": 1, + "id": "minecraft:cobbled_deepslate_wall" + }, "type": "minecraft:stonecutting" }, "cobblestone_slab": { @@ -3837,19 +3751,20 @@ ], "result": { "count": 6, - "item": "minecraft:cobblestone_slab", - "tag": null + "id": "minecraft:cobblestone_slab" }, "type": "minecraft:crafting_shaped" }, "cobblestone_slab_from_cobblestone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:cobblestone", "tag": null }, - "result": "minecraft:cobblestone_slab", + "result": { + "count": 2, + "id": "minecraft:cobblestone_slab" + }, "type": "minecraft:stonecutting" }, "cobblestone_stairs": { @@ -3868,19 +3783,20 @@ ], "result": { "count": 4, - "item": "minecraft:cobblestone_stairs", - "tag": null + "id": "minecraft:cobblestone_stairs" }, "type": "minecraft:crafting_shaped" }, "cobblestone_stairs_from_cobblestone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobblestone", "tag": null }, - "result": "minecraft:cobblestone_stairs", + "result": { + "count": 1, + "id": "minecraft:cobblestone_stairs" + }, "type": "minecraft:stonecutting" }, "cobblestone_wall": { @@ -3898,21 +3814,22 @@ ], "result": { "count": 6, - "item": "minecraft:cobblestone_wall", - "tag": null + "id": "minecraft:cobblestone_wall" }, "type": "minecraft:crafting_shaped" }, "cobblestone_wall_from_cobblestone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobblestone", "tag": null }, - "result": "minecraft:cobblestone_wall", - "type": "minecraft:stonecutting" - }, + "result": { + "count": 1, + "id": "minecraft:cobblestone_wall" + }, + "type": "minecraft:stonecutting" + }, "comparator": { "category": "redstone", "key": { @@ -3939,8 +3856,7 @@ ], "result": { "count": 1, - "item": "minecraft:comparator", - "tag": null + "id": "minecraft:comparator" }, "type": "minecraft:crafting_shaped" }, @@ -3965,8 +3881,7 @@ ], "result": { "count": 1, - "item": "minecraft:compass", - "tag": null + "id": "minecraft:compass" }, "type": "minecraft:crafting_shaped" }, @@ -3985,8 +3900,7 @@ ], "result": { "count": 1, - "item": "minecraft:composter", - "tag": null + "id": "minecraft:composter" }, "type": "minecraft:crafting_shaped" }, @@ -4011,8 +3925,7 @@ ], "result": { "count": 1, - "item": "minecraft:conduit", - "tag": null + "id": "minecraft:conduit" }, "type": "minecraft:crafting_shaped" }, @@ -4025,7 +3938,9 @@ "item": "minecraft:beef", "tag": null }, - "result": "minecraft:cooked_beef", + "result": { + "id": "minecraft:cooked_beef" + }, "type": "minecraft:smelting" }, "cooked_beef_from_campfire_cooking": { @@ -4037,7 +3952,9 @@ "item": "minecraft:beef", "tag": null }, - "result": "minecraft:cooked_beef", + "result": { + "id": "minecraft:cooked_beef" + }, "type": "minecraft:campfire_cooking" }, "cooked_beef_from_smoking": { @@ -4049,7 +3966,9 @@ "item": "minecraft:beef", "tag": null }, - "result": "minecraft:cooked_beef", + "result": { + "id": "minecraft:cooked_beef" + }, "type": "minecraft:smoking" }, "cooked_chicken": { @@ -4061,7 +3980,9 @@ "item": "minecraft:chicken", "tag": null }, - "result": "minecraft:cooked_chicken", + "result": { + "id": "minecraft:cooked_chicken" + }, "type": "minecraft:smelting" }, "cooked_chicken_from_campfire_cooking": { @@ -4073,7 +3994,9 @@ "item": "minecraft:chicken", "tag": null }, - "result": "minecraft:cooked_chicken", + "result": { + "id": "minecraft:cooked_chicken" + }, "type": "minecraft:campfire_cooking" }, "cooked_chicken_from_smoking": { @@ -4085,7 +4008,9 @@ "item": "minecraft:chicken", "tag": null }, - "result": "minecraft:cooked_chicken", + "result": { + "id": "minecraft:cooked_chicken" + }, "type": "minecraft:smoking" }, "cooked_cod": { @@ -4097,7 +4022,9 @@ "item": "minecraft:cod", "tag": null }, - "result": "minecraft:cooked_cod", + "result": { + "id": "minecraft:cooked_cod" + }, "type": "minecraft:smelting" }, "cooked_cod_from_campfire_cooking": { @@ -4109,7 +4036,9 @@ "item": "minecraft:cod", "tag": null }, - "result": "minecraft:cooked_cod", + "result": { + "id": "minecraft:cooked_cod" + }, "type": "minecraft:campfire_cooking" }, "cooked_cod_from_smoking": { @@ -4121,7 +4050,9 @@ "item": "minecraft:cod", "tag": null }, - "result": "minecraft:cooked_cod", + "result": { + "id": "minecraft:cooked_cod" + }, "type": "minecraft:smoking" }, "cooked_mutton": { @@ -4133,7 +4064,9 @@ "item": "minecraft:mutton", "tag": null }, - "result": "minecraft:cooked_mutton", + "result": { + "id": "minecraft:cooked_mutton" + }, "type": "minecraft:smelting" }, "cooked_mutton_from_campfire_cooking": { @@ -4145,7 +4078,9 @@ "item": "minecraft:mutton", "tag": null }, - "result": "minecraft:cooked_mutton", + "result": { + "id": "minecraft:cooked_mutton" + }, "type": "minecraft:campfire_cooking" }, "cooked_mutton_from_smoking": { @@ -4157,7 +4092,9 @@ "item": "minecraft:mutton", "tag": null }, - "result": "minecraft:cooked_mutton", + "result": { + "id": "minecraft:cooked_mutton" + }, "type": "minecraft:smoking" }, "cooked_porkchop": { @@ -4169,7 +4106,9 @@ "item": "minecraft:porkchop", "tag": null }, - "result": "minecraft:cooked_porkchop", + "result": { + "id": "minecraft:cooked_porkchop" + }, "type": "minecraft:smelting" }, "cooked_porkchop_from_campfire_cooking": { @@ -4181,7 +4120,9 @@ "item": "minecraft:porkchop", "tag": null }, - "result": "minecraft:cooked_porkchop", + "result": { + "id": "minecraft:cooked_porkchop" + }, "type": "minecraft:campfire_cooking" }, "cooked_porkchop_from_smoking": { @@ -4193,7 +4134,9 @@ "item": "minecraft:porkchop", "tag": null }, - "result": "minecraft:cooked_porkchop", + "result": { + "id": "minecraft:cooked_porkchop" + }, "type": "minecraft:smoking" }, "cooked_rabbit": { @@ -4205,7 +4148,9 @@ "item": "minecraft:rabbit", "tag": null }, - "result": "minecraft:cooked_rabbit", + "result": { + "id": "minecraft:cooked_rabbit" + }, "type": "minecraft:smelting" }, "cooked_rabbit_from_campfire_cooking": { @@ -4217,7 +4162,9 @@ "item": "minecraft:rabbit", "tag": null }, - "result": "minecraft:cooked_rabbit", + "result": { + "id": "minecraft:cooked_rabbit" + }, "type": "minecraft:campfire_cooking" }, "cooked_rabbit_from_smoking": { @@ -4229,7 +4176,9 @@ "item": "minecraft:rabbit", "tag": null }, - "result": "minecraft:cooked_rabbit", + "result": { + "id": "minecraft:cooked_rabbit" + }, "type": "minecraft:smoking" }, "cooked_salmon": { @@ -4241,7 +4190,9 @@ "item": "minecraft:salmon", "tag": null }, - "result": "minecraft:cooked_salmon", + "result": { + "id": "minecraft:cooked_salmon" + }, "type": "minecraft:smelting" }, "cooked_salmon_from_campfire_cooking": { @@ -4253,7 +4204,9 @@ "item": "minecraft:salmon", "tag": null }, - "result": "minecraft:cooked_salmon", + "result": { + "id": "minecraft:cooked_salmon" + }, "type": "minecraft:campfire_cooking" }, "cooked_salmon_from_smoking": { @@ -4265,7 +4218,9 @@ "item": "minecraft:salmon", "tag": null }, - "result": "minecraft:cooked_salmon", + "result": { + "id": "minecraft:cooked_salmon" + }, "type": "minecraft:smoking" }, "cookie": { @@ -4287,8 +4242,7 @@ ], "result": { "count": 8, - "item": "minecraft:cookie", - "tag": null + "id": "minecraft:cookie" }, "type": "minecraft:crafting_shaped" }, @@ -4308,8 +4262,7 @@ ], "result": { "count": 1, - "item": "minecraft:copper_block", - "tag": null + "id": "minecraft:copper_block" }, "type": "minecraft:crafting_shaped" }, @@ -4323,8 +4276,7 @@ ], "result": { "count": 9, - "item": "minecraft:copper_ingot", - "tag": null + "id": "minecraft:copper_ingot" }, "type": "minecraft:crafting_shapeless" }, @@ -4338,7 +4290,9 @@ "item": "minecraft:copper_ore", "tag": null }, - "result": "minecraft:copper_ingot", + "result": { + "id": "minecraft:copper_ingot" + }, "type": "minecraft:blasting" }, "copper_ingot_from_blasting_deepslate_copper_ore": { @@ -4351,7 +4305,9 @@ "item": "minecraft:deepslate_copper_ore", "tag": null }, - "result": "minecraft:copper_ingot", + "result": { + "id": "minecraft:copper_ingot" + }, "type": "minecraft:blasting" }, "copper_ingot_from_blasting_raw_copper": { @@ -4364,7 +4320,9 @@ "item": "minecraft:raw_copper", "tag": null }, - "result": "minecraft:copper_ingot", + "result": { + "id": "minecraft:copper_ingot" + }, "type": "minecraft:blasting" }, "copper_ingot_from_smelting_copper_ore": { @@ -4377,7 +4335,9 @@ "item": "minecraft:copper_ore", "tag": null }, - "result": "minecraft:copper_ingot", + "result": { + "id": "minecraft:copper_ingot" + }, "type": "minecraft:smelting" }, "copper_ingot_from_smelting_deepslate_copper_ore": { @@ -4390,7 +4350,9 @@ "item": "minecraft:deepslate_copper_ore", "tag": null }, - "result": "minecraft:copper_ingot", + "result": { + "id": "minecraft:copper_ingot" + }, "type": "minecraft:smelting" }, "copper_ingot_from_smelting_raw_copper": { @@ -4403,7 +4365,9 @@ "item": "minecraft:raw_copper", "tag": null }, - "result": "minecraft:copper_ingot", + "result": { + "id": "minecraft:copper_ingot" + }, "type": "minecraft:smelting" }, "copper_ingot_from_waxed_copper_block": { @@ -4416,8 +4380,7 @@ ], "result": { "count": 9, - "item": "minecraft:copper_ingot", - "tag": null + "id": "minecraft:copper_ingot" }, "type": "minecraft:crafting_shapeless" }, @@ -4430,7 +4393,9 @@ "item": "minecraft:deepslate_bricks", "tag": null }, - "result": "minecraft:cracked_deepslate_bricks", + "result": { + "id": "minecraft:cracked_deepslate_bricks" + }, "type": "minecraft:smelting" }, "cracked_deepslate_tiles": { @@ -4442,7 +4407,9 @@ "item": "minecraft:deepslate_tiles", "tag": null }, - "result": "minecraft:cracked_deepslate_tiles", + "result": { + "id": "minecraft:cracked_deepslate_tiles" + }, "type": "minecraft:smelting" }, "cracked_nether_bricks": { @@ -4454,7 +4421,9 @@ "item": "minecraft:nether_bricks", "tag": null }, - "result": "minecraft:cracked_nether_bricks", + "result": { + "id": "minecraft:cracked_nether_bricks" + }, "type": "minecraft:smelting" }, "cracked_polished_blackstone_bricks": { @@ -4466,7 +4435,9 @@ "item": "minecraft:polished_blackstone_bricks", "tag": null }, - "result": "minecraft:cracked_polished_blackstone_bricks", + "result": { + "id": "minecraft:cracked_polished_blackstone_bricks" + }, "type": "minecraft:smelting" }, "cracked_stone_bricks": { @@ -4478,7 +4449,9 @@ "item": "minecraft:stone_bricks", "tag": null }, - "result": "minecraft:cracked_stone_bricks", + "result": { + "id": "minecraft:cracked_stone_bricks" + }, "type": "minecraft:smelting" }, "crafting_table": { @@ -4495,8 +4468,7 @@ ], "result": { "count": 1, - "item": "minecraft:crafting_table", - "tag": null + "id": "minecraft:crafting_table" }, "show_notification": false, "type": "minecraft:crafting_shaped" @@ -4513,8 +4485,7 @@ ], "result": { "count": 1, - "item": "minecraft:creeper_banner_pattern", - "tag": null + "id": "minecraft:creeper_banner_pattern" }, "type": "minecraft:crafting_shapeless" }, @@ -4528,8 +4499,7 @@ ], "result": { "count": 1, - "item": "minecraft:crimson_button", - "tag": null + "id": "minecraft:crimson_button" }, "type": "minecraft:crafting_shapeless" }, @@ -4550,8 +4520,7 @@ ], "result": { "count": 3, - "item": "minecraft:crimson_door", - "tag": null + "id": "minecraft:crimson_door" }, "type": "minecraft:crafting_shaped" }, @@ -4576,8 +4545,7 @@ ], "result": { "count": 3, - "item": "minecraft:crimson_fence", - "tag": null + "id": "minecraft:crimson_fence" }, "type": "minecraft:crafting_shaped" }, @@ -4602,8 +4570,7 @@ ], "result": { "count": 1, - "item": "minecraft:crimson_fence_gate", - "tag": null + "id": "minecraft:crimson_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -4629,8 +4596,7 @@ ], "result": { "count": 6, - "item": "minecraft:crimson_hanging_sign", - "tag": null + "id": "minecraft:crimson_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -4650,8 +4616,7 @@ ], "result": { "count": 3, - "item": "minecraft:crimson_hyphae", - "tag": null + "id": "minecraft:crimson_hyphae" }, "type": "minecraft:crafting_shaped" }, @@ -4665,8 +4630,7 @@ ], "result": { "count": 4, - "item": "minecraft:crimson_planks", - "tag": null + "id": "minecraft:crimson_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -4685,8 +4649,7 @@ ], "result": { "count": 1, - "item": "minecraft:crimson_pressure_plate", - "tag": null + "id": "minecraft:crimson_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -4712,8 +4675,7 @@ ], "result": { "count": 3, - "item": "minecraft:crimson_sign", - "tag": null + "id": "minecraft:crimson_sign" }, "type": "minecraft:crafting_shaped" }, @@ -4732,8 +4694,7 @@ ], "result": { "count": 6, - "item": "minecraft:crimson_slab", - "tag": null + "id": "minecraft:crimson_slab" }, "type": "minecraft:crafting_shaped" }, @@ -4754,8 +4715,7 @@ ], "result": { "count": 4, - "item": "minecraft:crimson_stairs", - "tag": null + "id": "minecraft:crimson_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -4775,8 +4735,7 @@ ], "result": { "count": 2, - "item": "minecraft:crimson_trapdoor", - "tag": null + "id": "minecraft:crimson_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -4811,8 +4770,7 @@ ], "result": { "count": 1, - "item": "minecraft:crossbow", - "tag": null + "id": "minecraft:crossbow" }, "type": "minecraft:crafting_shaped" }, @@ -4831,19 +4789,20 @@ ], "result": { "count": 4, - "item": "minecraft:cut_copper", - "tag": null + "id": "minecraft:cut_copper" }, "type": "minecraft:crafting_shaped" }, "cut_copper_from_copper_block_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:copper_block", "tag": null }, - "result": "minecraft:cut_copper", + "result": { + "count": 4, + "id": "minecraft:cut_copper" + }, "type": "minecraft:stonecutting" }, "cut_copper_slab": { @@ -4860,29 +4819,32 @@ ], "result": { "count": 6, - "item": "minecraft:cut_copper_slab", - "tag": null + "id": "minecraft:cut_copper_slab" }, "type": "minecraft:crafting_shaped" }, "cut_copper_slab_from_copper_block_stonecutting": { - "count": 8, "ingredient": { "count": 1, "item": "minecraft:copper_block", "tag": null }, - "result": "minecraft:cut_copper_slab", + "result": { + "count": 8, + "id": "minecraft:cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "cut_copper_slab_from_cut_copper_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:cut_copper", "tag": null }, - "result": "minecraft:cut_copper_slab", + "result": { + "count": 2, + "id": "minecraft:cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "cut_copper_stairs": { @@ -4901,29 +4863,32 @@ ], "result": { "count": 4, - "item": "minecraft:cut_copper_stairs", - "tag": null + "id": "minecraft:cut_copper_stairs" }, "type": "minecraft:crafting_shaped" }, "cut_copper_stairs_from_copper_block_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:copper_block", "tag": null }, - "result": "minecraft:cut_copper_stairs", + "result": { + "count": 4, + "id": "minecraft:cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "cut_copper_stairs_from_cut_copper_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cut_copper", "tag": null }, - "result": "minecraft:cut_copper_stairs", + "result": { + "count": 1, + "id": "minecraft:cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "cut_red_sandstone": { @@ -4941,19 +4906,20 @@ ], "result": { "count": 4, - "item": "minecraft:cut_red_sandstone", - "tag": null + "id": "minecraft:cut_red_sandstone" }, "type": "minecraft:crafting_shaped" }, "cut_red_sandstone_from_red_sandstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:red_sandstone", "tag": null }, - "result": "minecraft:cut_red_sandstone", + "result": { + "count": 1, + "id": "minecraft:cut_red_sandstone" + }, "type": "minecraft:stonecutting" }, "cut_red_sandstone_slab": { @@ -4970,29 +4936,32 @@ ], "result": { "count": 6, - "item": "minecraft:cut_red_sandstone_slab", - "tag": null + "id": "minecraft:cut_red_sandstone_slab" }, "type": "minecraft:crafting_shaped" }, "cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:cut_red_sandstone", "tag": null }, - "result": "minecraft:cut_red_sandstone_slab", + "result": { + "count": 2, + "id": "minecraft:cut_red_sandstone_slab" + }, "type": "minecraft:stonecutting" }, "cut_red_sandstone_slab_from_red_sandstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:red_sandstone", "tag": null }, - "result": "minecraft:cut_red_sandstone_slab", + "result": { + "count": 2, + "id": "minecraft:cut_red_sandstone_slab" + }, "type": "minecraft:stonecutting" }, "cut_sandstone": { @@ -5010,19 +4979,20 @@ ], "result": { "count": 4, - "item": "minecraft:cut_sandstone", - "tag": null + "id": "minecraft:cut_sandstone" }, "type": "minecraft:crafting_shaped" }, "cut_sandstone_from_sandstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:sandstone", "tag": null }, - "result": "minecraft:cut_sandstone", + "result": { + "count": 1, + "id": "minecraft:cut_sandstone" + }, "type": "minecraft:stonecutting" }, "cut_sandstone_slab": { @@ -5039,29 +5009,32 @@ ], "result": { "count": 6, - "item": "minecraft:cut_sandstone_slab", - "tag": null + "id": "minecraft:cut_sandstone_slab" }, "type": "minecraft:crafting_shaped" }, "cut_sandstone_slab_from_cut_sandstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:cut_sandstone", "tag": null }, - "result": "minecraft:cut_sandstone_slab", + "result": { + "count": 2, + "id": "minecraft:cut_sandstone_slab" + }, "type": "minecraft:stonecutting" }, "cut_sandstone_slab_from_sandstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:sandstone", "tag": null }, - "result": "minecraft:cut_sandstone_slab", + "result": { + "count": 2, + "id": "minecraft:cut_sandstone_slab" + }, "type": "minecraft:stonecutting" }, "cyan_banner": { @@ -5086,8 +5059,7 @@ ], "result": { "count": 1, - "item": "minecraft:cyan_banner", - "tag": null + "id": "minecraft:cyan_banner" }, "type": "minecraft:crafting_shaped" }, @@ -5111,8 +5083,7 @@ ], "result": { "count": 1, - "item": "minecraft:cyan_bed", - "tag": null + "id": "minecraft:cyan_bed" }, "type": "minecraft:crafting_shaped" }, @@ -5129,8 +5100,7 @@ ], "result": { "count": 1, - "item": "minecraft:cyan_candle", - "tag": null + "id": "minecraft:cyan_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -5149,8 +5119,7 @@ ], "result": { "count": 3, - "item": "minecraft:cyan_carpet", - "tag": null + "id": "minecraft:cyan_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -5188,8 +5157,7 @@ ], "result": { "count": 8, - "item": "minecraft:cyan_concrete_powder", - "tag": null + "id": "minecraft:cyan_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -5206,8 +5174,7 @@ ], "result": { "count": 2, - "item": "minecraft:cyan_dye", - "tag": null + "id": "minecraft:cyan_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -5221,8 +5188,7 @@ ], "result": { "count": 2, - "item": "minecraft:cyan_dye", - "tag": null + "id": "minecraft:cyan_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -5235,7 +5201,9 @@ "item": "minecraft:cyan_terracotta", "tag": null }, - "result": "minecraft:cyan_glazed_terracotta", + "result": { + "id": "minecraft:cyan_glazed_terracotta" + }, "type": "minecraft:smelting" }, "cyan_stained_glass": { @@ -5260,8 +5228,7 @@ ], "result": { "count": 8, - "item": "minecraft:cyan_stained_glass", - "tag": null + "id": "minecraft:cyan_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -5281,8 +5248,7 @@ ], "result": { "count": 16, - "item": "minecraft:cyan_stained_glass_pane", - "tag": null + "id": "minecraft:cyan_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -5308,8 +5274,7 @@ ], "result": { "count": 8, - "item": "minecraft:cyan_stained_glass_pane", - "tag": null + "id": "minecraft:cyan_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -5335,8 +5300,7 @@ ], "result": { "count": 8, - "item": "minecraft:cyan_terracotta", - "tag": null + "id": "minecraft:cyan_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -5356,8 +5320,7 @@ ], "result": { "count": 1, - "item": "minecraft:dark_oak_boat", - "tag": null + "id": "minecraft:dark_oak_boat" }, "type": "minecraft:crafting_shaped" }, @@ -5371,8 +5334,7 @@ ], "result": { "count": 1, - "item": "minecraft:dark_oak_button", - "tag": null + "id": "minecraft:dark_oak_button" }, "type": "minecraft:crafting_shapeless" }, @@ -5389,8 +5351,7 @@ ], "result": { "count": 1, - "item": "minecraft:dark_oak_chest_boat", - "tag": null + "id": "minecraft:dark_oak_chest_boat" }, "type": "minecraft:crafting_shapeless" }, @@ -5411,8 +5372,7 @@ ], "result": { "count": 3, - "item": "minecraft:dark_oak_door", - "tag": null + "id": "minecraft:dark_oak_door" }, "type": "minecraft:crafting_shaped" }, @@ -5437,8 +5397,7 @@ ], "result": { "count": 3, - "item": "minecraft:dark_oak_fence", - "tag": null + "id": "minecraft:dark_oak_fence" }, "type": "minecraft:crafting_shaped" }, @@ -5463,8 +5422,7 @@ ], "result": { "count": 1, - "item": "minecraft:dark_oak_fence_gate", - "tag": null + "id": "minecraft:dark_oak_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -5490,8 +5448,7 @@ ], "result": { "count": 6, - "item": "minecraft:dark_oak_hanging_sign", - "tag": null + "id": "minecraft:dark_oak_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -5505,8 +5462,7 @@ ], "result": { "count": 4, - "item": "minecraft:dark_oak_planks", - "tag": null + "id": "minecraft:dark_oak_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -5525,8 +5481,7 @@ ], "result": { "count": 1, - "item": "minecraft:dark_oak_pressure_plate", - "tag": null + "id": "minecraft:dark_oak_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -5552,8 +5507,7 @@ ], "result": { "count": 3, - "item": "minecraft:dark_oak_sign", - "tag": null + "id": "minecraft:dark_oak_sign" }, "type": "minecraft:crafting_shaped" }, @@ -5572,8 +5526,7 @@ ], "result": { "count": 6, - "item": "minecraft:dark_oak_slab", - "tag": null + "id": "minecraft:dark_oak_slab" }, "type": "minecraft:crafting_shaped" }, @@ -5594,8 +5547,7 @@ ], "result": { "count": 4, - "item": "minecraft:dark_oak_stairs", - "tag": null + "id": "minecraft:dark_oak_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -5615,8 +5567,7 @@ ], "result": { "count": 2, - "item": "minecraft:dark_oak_trapdoor", - "tag": null + "id": "minecraft:dark_oak_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -5636,8 +5587,7 @@ ], "result": { "count": 3, - "item": "minecraft:dark_oak_wood", - "tag": null + "id": "minecraft:dark_oak_wood" }, "type": "minecraft:crafting_shaped" }, @@ -5662,8 +5612,7 @@ ], "result": { "count": 1, - "item": "minecraft:dark_prismarine", - "tag": null + "id": "minecraft:dark_prismarine" }, "type": "minecraft:crafting_shaped" }, @@ -5681,19 +5630,20 @@ ], "result": { "count": 6, - "item": "minecraft:dark_prismarine_slab", - "tag": null + "id": "minecraft:dark_prismarine_slab" }, "type": "minecraft:crafting_shaped" }, "dark_prismarine_slab_from_dark_prismarine_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:dark_prismarine", "tag": null }, - "result": "minecraft:dark_prismarine_slab", + "result": { + "count": 2, + "id": "minecraft:dark_prismarine_slab" + }, "type": "minecraft:stonecutting" }, "dark_prismarine_stairs": { @@ -5712,19 +5662,20 @@ ], "result": { "count": 4, - "item": "minecraft:dark_prismarine_stairs", - "tag": null + "id": "minecraft:dark_prismarine_stairs" }, "type": "minecraft:crafting_shaped" }, "dark_prismarine_stairs_from_dark_prismarine_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:dark_prismarine", "tag": null }, - "result": "minecraft:dark_prismarine_stairs", + "result": { + "count": 1, + "id": "minecraft:dark_prismarine_stairs" + }, "type": "minecraft:stonecutting" }, "daylight_detector": { @@ -5752,8 +5703,7 @@ ], "result": { "count": 1, - "item": "minecraft:daylight_detector", - "tag": null + "id": "minecraft:daylight_detector" }, "type": "minecraft:crafting_shaped" }, @@ -5777,8 +5727,7 @@ ], "result": { "count": 1, - "item": "minecraft:decorated_pot", - "tag": null + "id": "minecraft:decorated_pot" }, "type": "minecraft:crafting_shaped" }, @@ -5791,7 +5740,9 @@ "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate" + }, "type": "minecraft:smelting" }, "deepslate_brick_slab": { @@ -5808,39 +5759,44 @@ ], "result": { "count": 6, - "item": "minecraft:deepslate_brick_slab", - "tag": null + "id": "minecraft:deepslate_brick_slab" }, "type": "minecraft:crafting_shaped" }, "deepslate_brick_slab_from_cobbled_deepslate_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:deepslate_brick_slab", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + }, "type": "minecraft:stonecutting" }, "deepslate_brick_slab_from_deepslate_bricks_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:deepslate_bricks", "tag": null }, - "result": "minecraft:deepslate_brick_slab", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + }, "type": "minecraft:stonecutting" }, "deepslate_brick_slab_from_polished_deepslate_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:deepslate_brick_slab", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + }, "type": "minecraft:stonecutting" }, "deepslate_brick_stairs": { @@ -5859,39 +5815,44 @@ ], "result": { "count": 4, - "item": "minecraft:deepslate_brick_stairs", - "tag": null + "id": "minecraft:deepslate_brick_stairs" }, "type": "minecraft:crafting_shaped" }, "deepslate_brick_stairs_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:deepslate_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:deepslate_brick_stairs" + }, "type": "minecraft:stonecutting" }, "deepslate_brick_stairs_from_deepslate_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:deepslate_bricks", "tag": null }, - "result": "minecraft:deepslate_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:deepslate_brick_stairs" + }, "type": "minecraft:stonecutting" }, "deepslate_brick_stairs_from_polished_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:deepslate_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:deepslate_brick_stairs" + }, "type": "minecraft:stonecutting" }, "deepslate_brick_wall": { @@ -5909,39 +5870,44 @@ ], "result": { "count": 6, - "item": "minecraft:deepslate_brick_wall", - "tag": null + "id": "minecraft:deepslate_brick_wall" }, "type": "minecraft:crafting_shaped" }, "deepslate_brick_wall_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:deepslate_brick_wall", + "result": { + "count": 1, + "id": "minecraft:deepslate_brick_wall" + }, "type": "minecraft:stonecutting" }, "deepslate_brick_wall_from_deepslate_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:deepslate_bricks", "tag": null }, - "result": "minecraft:deepslate_brick_wall", + "result": { + "count": 1, + "id": "minecraft:deepslate_brick_wall" + }, "type": "minecraft:stonecutting" }, "deepslate_brick_wall_from_polished_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:deepslate_brick_wall", + "result": { + "count": 1, + "id": "minecraft:deepslate_brick_wall" + }, "type": "minecraft:stonecutting" }, "deepslate_bricks": { @@ -5959,29 +5925,32 @@ ], "result": { "count": 4, - "item": "minecraft:deepslate_bricks", - "tag": null + "id": "minecraft:deepslate_bricks" }, "type": "minecraft:crafting_shaped" }, "deepslate_bricks_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:deepslate_bricks", + "result": { + "count": 1, + "id": "minecraft:deepslate_bricks" + }, "type": "minecraft:stonecutting" }, "deepslate_bricks_from_polished_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:deepslate_bricks", + "result": { + "count": 1, + "id": "minecraft:deepslate_bricks" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_slab": { @@ -5998,49 +5967,56 @@ ], "result": { "count": 6, - "item": "minecraft:deepslate_tile_slab", - "tag": null + "id": "minecraft:deepslate_tile_slab" }, "type": "minecraft:crafting_shaped" }, "deepslate_tile_slab_from_cobbled_deepslate_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:deepslate_tile_slab", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_slab_from_deepslate_bricks_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:deepslate_bricks", "tag": null }, - "result": "minecraft:deepslate_tile_slab", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_slab_from_deepslate_tiles_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:deepslate_tiles", "tag": null }, - "result": "minecraft:deepslate_tile_slab", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_slab_from_polished_deepslate_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:deepslate_tile_slab", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_stairs": { @@ -6059,49 +6035,56 @@ ], "result": { "count": 4, - "item": "minecraft:deepslate_tile_stairs", - "tag": null + "id": "minecraft:deepslate_tile_stairs" }, "type": "minecraft:crafting_shaped" }, "deepslate_tile_stairs_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:deepslate_tile_stairs", + "result": { + "count": 1, + "id": "minecraft:deepslate_tile_stairs" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_stairs_from_deepslate_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:deepslate_bricks", "tag": null }, - "result": "minecraft:deepslate_tile_stairs", + "result": { + "count": 1, + "id": "minecraft:deepslate_tile_stairs" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_stairs_from_deepslate_tiles_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:deepslate_tiles", "tag": null }, - "result": "minecraft:deepslate_tile_stairs", + "result": { + "count": 1, + "id": "minecraft:deepslate_tile_stairs" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_stairs_from_polished_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:deepslate_tile_stairs", + "result": { + "count": 1, + "id": "minecraft:deepslate_tile_stairs" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_wall": { @@ -6119,49 +6102,56 @@ ], "result": { "count": 6, - "item": "minecraft:deepslate_tile_wall", - "tag": null + "id": "minecraft:deepslate_tile_wall" }, "type": "minecraft:crafting_shaped" }, "deepslate_tile_wall_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:deepslate_tile_wall", + "result": { + "count": 1, + "id": "minecraft:deepslate_tile_wall" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_wall_from_deepslate_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:deepslate_bricks", "tag": null }, - "result": "minecraft:deepslate_tile_wall", + "result": { + "count": 1, + "id": "minecraft:deepslate_tile_wall" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_wall_from_deepslate_tiles_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:deepslate_tiles", "tag": null }, - "result": "minecraft:deepslate_tile_wall", + "result": { + "count": 1, + "id": "minecraft:deepslate_tile_wall" + }, "type": "minecraft:stonecutting" }, "deepslate_tile_wall_from_polished_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:deepslate_tile_wall", + "result": { + "count": 1, + "id": "minecraft:deepslate_tile_wall" + }, "type": "minecraft:stonecutting" }, "deepslate_tiles": { @@ -6179,39 +6169,44 @@ ], "result": { "count": 4, - "item": "minecraft:deepslate_tiles", - "tag": null + "id": "minecraft:deepslate_tiles" }, "type": "minecraft:crafting_shaped" }, "deepslate_tiles_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:deepslate_tiles", + "result": { + "count": 1, + "id": "minecraft:deepslate_tiles" + }, "type": "minecraft:stonecutting" }, "deepslate_tiles_from_deepslate_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:deepslate_bricks", "tag": null }, - "result": "minecraft:deepslate_tiles", + "result": { + "count": 1, + "id": "minecraft:deepslate_tiles" + }, "type": "minecraft:stonecutting" }, "deepslate_tiles_from_polished_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:deepslate_tiles", + "result": { + "count": 1, + "id": "minecraft:deepslate_tiles" + }, "type": "minecraft:stonecutting" }, "detector_rail": { @@ -6240,8 +6235,7 @@ ], "result": { "count": 6, - "item": "minecraft:detector_rail", - "tag": null + "id": "minecraft:detector_rail" }, "type": "minecraft:crafting_shaped" }, @@ -6254,8 +6248,7 @@ ], "result": { "count": 9, - "item": "minecraft:diamond", - "tag": null + "id": "minecraft:diamond" }, "type": "minecraft:crafting_shapeless" }, @@ -6280,8 +6273,7 @@ ], "result": { "count": 1, - "item": "minecraft:diamond_axe", - "tag": null + "id": "minecraft:diamond_axe" }, "type": "minecraft:crafting_shaped" }, @@ -6301,8 +6293,7 @@ ], "result": { "count": 1, - "item": "minecraft:diamond_block", - "tag": null + "id": "minecraft:diamond_block" }, "type": "minecraft:crafting_shaped" }, @@ -6321,8 +6312,7 @@ ], "result": { "count": 1, - "item": "minecraft:diamond_boots", - "tag": null + "id": "minecraft:diamond_boots" }, "type": "minecraft:crafting_shaped" }, @@ -6342,8 +6332,7 @@ ], "result": { "count": 1, - "item": "minecraft:diamond_chestplate", - "tag": null + "id": "minecraft:diamond_chestplate" }, "type": "minecraft:crafting_shaped" }, @@ -6357,7 +6346,9 @@ "item": "minecraft:deepslate_diamond_ore", "tag": null }, - "result": "minecraft:diamond", + "result": { + "id": "minecraft:diamond" + }, "type": "minecraft:blasting" }, "diamond_from_blasting_diamond_ore": { @@ -6370,7 +6361,9 @@ "item": "minecraft:diamond_ore", "tag": null }, - "result": "minecraft:diamond", + "result": { + "id": "minecraft:diamond" + }, "type": "minecraft:blasting" }, "diamond_from_smelting_deepslate_diamond_ore": { @@ -6383,7 +6376,9 @@ "item": "minecraft:deepslate_diamond_ore", "tag": null }, - "result": "minecraft:diamond", + "result": { + "id": "minecraft:diamond" + }, "type": "minecraft:smelting" }, "diamond_from_smelting_diamond_ore": { @@ -6396,7 +6391,9 @@ "item": "minecraft:diamond_ore", "tag": null }, - "result": "minecraft:diamond", + "result": { + "id": "minecraft:diamond" + }, "type": "minecraft:smelting" }, "diamond_helmet": { @@ -6414,8 +6411,7 @@ ], "result": { "count": 1, - "item": "minecraft:diamond_helmet", - "tag": null + "id": "minecraft:diamond_helmet" }, "type": "minecraft:crafting_shaped" }, @@ -6440,8 +6436,7 @@ ], "result": { "count": 1, - "item": "minecraft:diamond_hoe", - "tag": null + "id": "minecraft:diamond_hoe" }, "type": "minecraft:crafting_shaped" }, @@ -6461,8 +6456,7 @@ ], "result": { "count": 1, - "item": "minecraft:diamond_leggings", - "tag": null + "id": "minecraft:diamond_leggings" }, "type": "minecraft:crafting_shaped" }, @@ -6487,8 +6481,7 @@ ], "result": { "count": 1, - "item": "minecraft:diamond_pickaxe", - "tag": null + "id": "minecraft:diamond_pickaxe" }, "type": "minecraft:crafting_shaped" }, @@ -6513,8 +6506,7 @@ ], "result": { "count": 1, - "item": "minecraft:diamond_shovel", - "tag": null + "id": "minecraft:diamond_shovel" }, "type": "minecraft:crafting_shaped" }, @@ -6539,8 +6531,7 @@ ], "result": { "count": 1, - "item": "minecraft:diamond_sword", - "tag": null + "id": "minecraft:diamond_sword" }, "type": "minecraft:crafting_shaped" }, @@ -6564,8 +6555,7 @@ ], "result": { "count": 2, - "item": "minecraft:diorite", - "tag": null + "id": "minecraft:diorite" }, "type": "minecraft:crafting_shaped" }, @@ -6583,19 +6573,20 @@ ], "result": { "count": 6, - "item": "minecraft:diorite_slab", - "tag": null + "id": "minecraft:diorite_slab" }, "type": "minecraft:crafting_shaped" }, "diorite_slab_from_diorite_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:diorite", "tag": null }, - "result": "minecraft:diorite_slab", + "result": { + "count": 2, + "id": "minecraft:diorite_slab" + }, "type": "minecraft:stonecutting" }, "diorite_stairs": { @@ -6614,19 +6605,20 @@ ], "result": { "count": 4, - "item": "minecraft:diorite_stairs", - "tag": null + "id": "minecraft:diorite_stairs" }, "type": "minecraft:crafting_shaped" }, "diorite_stairs_from_diorite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:diorite", "tag": null }, - "result": "minecraft:diorite_stairs", + "result": { + "count": 1, + "id": "minecraft:diorite_stairs" + }, "type": "minecraft:stonecutting" }, "diorite_wall": { @@ -6644,19 +6636,20 @@ ], "result": { "count": 6, - "item": "minecraft:diorite_wall", - "tag": null + "id": "minecraft:diorite_wall" }, "type": "minecraft:crafting_shaped" }, "diorite_wall_from_diorite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:diorite", "tag": null }, - "result": "minecraft:diorite_wall", + "result": { + "count": 1, + "id": "minecraft:diorite_wall" + }, "type": "minecraft:stonecutting" }, "dispenser": { @@ -6685,8 +6678,7 @@ ], "result": { "count": 1, - "item": "minecraft:dispenser", - "tag": null + "id": "minecraft:dispenser" }, "type": "minecraft:crafting_shaped" }, @@ -6699,8 +6691,7 @@ ], "result": { "count": 9, - "item": "minecraft:dried_kelp", - "tag": null + "id": "minecraft:dried_kelp" }, "type": "minecraft:crafting_shapeless" }, @@ -6720,8 +6711,7 @@ ], "result": { "count": 1, - "item": "minecraft:dried_kelp_block", - "tag": null + "id": "minecraft:dried_kelp_block" }, "type": "minecraft:crafting_shaped" }, @@ -6734,7 +6724,9 @@ "item": "minecraft:kelp", "tag": null }, - "result": "minecraft:dried_kelp", + "result": { + "id": "minecraft:dried_kelp" + }, "type": "minecraft:campfire_cooking" }, "dried_kelp_from_smelting": { @@ -6746,7 +6738,9 @@ "item": "minecraft:kelp", "tag": null }, - "result": "minecraft:dried_kelp", + "result": { + "id": "minecraft:dried_kelp" + }, "type": "minecraft:smelting" }, "dried_kelp_from_smoking": { @@ -6758,7 +6752,9 @@ "item": "minecraft:kelp", "tag": null }, - "result": "minecraft:dried_kelp", + "result": { + "id": "minecraft:dried_kelp" + }, "type": "minecraft:smoking" }, "dripstone_block": { @@ -6776,8 +6772,7 @@ ], "result": { "count": 1, - "item": "minecraft:dripstone_block", - "tag": null + "id": "minecraft:dripstone_block" }, "type": "minecraft:crafting_shaped" }, @@ -6802,8 +6797,7 @@ ], "result": { "count": 1, - "item": "minecraft:dropper", - "tag": null + "id": "minecraft:dropper" }, "type": "minecraft:crafting_shaped" }, @@ -6833,8 +6827,7 @@ ], "result": { "count": 2, - "item": "minecraft:dune_armor_trim_smithing_template", - "tag": null + "id": "minecraft:dune_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -6907,8 +6900,7 @@ ], "result": { "count": 1, - "item": "minecraft:black_bed", - "tag": null + "id": "minecraft:black_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -6969,8 +6961,7 @@ ], "result": { "count": 1, - "item": "minecraft:black_carpet", - "tag": null + "id": "minecraft:black_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -7031,8 +7022,7 @@ ], "result": { "count": 1, - "item": "minecraft:black_wool", - "tag": null + "id": "minecraft:black_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -7093,8 +7083,7 @@ ], "result": { "count": 1, - "item": "minecraft:blue_bed", - "tag": null + "id": "minecraft:blue_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -7155,8 +7144,7 @@ ], "result": { "count": 1, - "item": "minecraft:blue_carpet", - "tag": null + "id": "minecraft:blue_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -7217,8 +7205,7 @@ ], "result": { "count": 1, - "item": "minecraft:blue_wool", - "tag": null + "id": "minecraft:blue_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -7279,8 +7266,7 @@ ], "result": { "count": 1, - "item": "minecraft:brown_bed", - "tag": null + "id": "minecraft:brown_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -7341,8 +7327,7 @@ ], "result": { "count": 1, - "item": "minecraft:brown_carpet", - "tag": null + "id": "minecraft:brown_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -7403,8 +7388,7 @@ ], "result": { "count": 1, - "item": "minecraft:brown_wool", - "tag": null + "id": "minecraft:brown_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -7465,8 +7449,7 @@ ], "result": { "count": 1, - "item": "minecraft:cyan_bed", - "tag": null + "id": "minecraft:cyan_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -7527,8 +7510,7 @@ ], "result": { "count": 1, - "item": "minecraft:cyan_carpet", - "tag": null + "id": "minecraft:cyan_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -7589,8 +7571,7 @@ ], "result": { "count": 1, - "item": "minecraft:cyan_wool", - "tag": null + "id": "minecraft:cyan_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -7651,8 +7632,7 @@ ], "result": { "count": 1, - "item": "minecraft:gray_bed", - "tag": null + "id": "minecraft:gray_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -7713,8 +7693,7 @@ ], "result": { "count": 1, - "item": "minecraft:gray_carpet", - "tag": null + "id": "minecraft:gray_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -7775,8 +7754,7 @@ ], "result": { "count": 1, - "item": "minecraft:gray_wool", - "tag": null + "id": "minecraft:gray_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -7837,8 +7815,7 @@ ], "result": { "count": 1, - "item": "minecraft:green_bed", - "tag": null + "id": "minecraft:green_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -7899,8 +7876,7 @@ ], "result": { "count": 1, - "item": "minecraft:green_carpet", - "tag": null + "id": "minecraft:green_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -7961,8 +7937,7 @@ ], "result": { "count": 1, - "item": "minecraft:green_wool", - "tag": null + "id": "minecraft:green_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -8023,8 +7998,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_blue_bed", - "tag": null + "id": "minecraft:light_blue_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -8085,8 +8059,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_blue_carpet", - "tag": null + "id": "minecraft:light_blue_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -8147,8 +8120,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_blue_wool", - "tag": null + "id": "minecraft:light_blue_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -8209,8 +8181,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_gray_bed", - "tag": null + "id": "minecraft:light_gray_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -8271,8 +8242,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_gray_carpet", - "tag": null + "id": "minecraft:light_gray_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -8333,8 +8303,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_gray_wool", - "tag": null + "id": "minecraft:light_gray_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -8395,8 +8364,7 @@ ], "result": { "count": 1, - "item": "minecraft:lime_bed", - "tag": null + "id": "minecraft:lime_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -8457,8 +8425,7 @@ ], "result": { "count": 1, - "item": "minecraft:lime_carpet", - "tag": null + "id": "minecraft:lime_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -8519,8 +8486,7 @@ ], "result": { "count": 1, - "item": "minecraft:lime_wool", - "tag": null + "id": "minecraft:lime_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -8581,8 +8547,7 @@ ], "result": { "count": 1, - "item": "minecraft:magenta_bed", - "tag": null + "id": "minecraft:magenta_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -8643,8 +8608,7 @@ ], "result": { "count": 1, - "item": "minecraft:magenta_carpet", - "tag": null + "id": "minecraft:magenta_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -8705,8 +8669,7 @@ ], "result": { "count": 1, - "item": "minecraft:magenta_wool", - "tag": null + "id": "minecraft:magenta_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -8767,8 +8730,7 @@ ], "result": { "count": 1, - "item": "minecraft:orange_bed", - "tag": null + "id": "minecraft:orange_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -8829,8 +8791,7 @@ ], "result": { "count": 1, - "item": "minecraft:orange_carpet", - "tag": null + "id": "minecraft:orange_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -8891,8 +8852,7 @@ ], "result": { "count": 1, - "item": "minecraft:orange_wool", - "tag": null + "id": "minecraft:orange_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -8953,8 +8913,7 @@ ], "result": { "count": 1, - "item": "minecraft:pink_bed", - "tag": null + "id": "minecraft:pink_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -9015,8 +8974,7 @@ ], "result": { "count": 1, - "item": "minecraft:pink_carpet", - "tag": null + "id": "minecraft:pink_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -9077,8 +9035,7 @@ ], "result": { "count": 1, - "item": "minecraft:pink_wool", - "tag": null + "id": "minecraft:pink_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -9139,8 +9096,7 @@ ], "result": { "count": 1, - "item": "minecraft:purple_bed", - "tag": null + "id": "minecraft:purple_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -9201,8 +9157,7 @@ ], "result": { "count": 1, - "item": "minecraft:purple_carpet", - "tag": null + "id": "minecraft:purple_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -9263,8 +9218,7 @@ ], "result": { "count": 1, - "item": "minecraft:purple_wool", - "tag": null + "id": "minecraft:purple_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -9325,8 +9279,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_bed", - "tag": null + "id": "minecraft:red_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -9387,8 +9340,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_carpet", - "tag": null + "id": "minecraft:red_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -9449,8 +9401,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_wool", - "tag": null + "id": "minecraft:red_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -9511,8 +9462,7 @@ ], "result": { "count": 1, - "item": "minecraft:white_bed", - "tag": null + "id": "minecraft:white_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -9573,8 +9523,7 @@ ], "result": { "count": 1, - "item": "minecraft:white_carpet", - "tag": null + "id": "minecraft:white_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -9635,8 +9584,7 @@ ], "result": { "count": 1, - "item": "minecraft:white_wool", - "tag": null + "id": "minecraft:white_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -9697,8 +9645,7 @@ ], "result": { "count": 1, - "item": "minecraft:yellow_bed", - "tag": null + "id": "minecraft:yellow_bed" }, "type": "minecraft:crafting_shapeless" }, @@ -9759,8 +9706,7 @@ ], "result": { "count": 1, - "item": "minecraft:yellow_carpet", - "tag": null + "id": "minecraft:yellow_carpet" }, "type": "minecraft:crafting_shapeless" }, @@ -9821,8 +9767,7 @@ ], "result": { "count": 1, - "item": "minecraft:yellow_wool", - "tag": null + "id": "minecraft:yellow_wool" }, "type": "minecraft:crafting_shapeless" }, @@ -9835,8 +9780,7 @@ ], "result": { "count": 9, - "item": "minecraft:emerald", - "tag": null + "id": "minecraft:emerald" }, "type": "minecraft:crafting_shapeless" }, @@ -9856,8 +9800,7 @@ ], "result": { "count": 1, - "item": "minecraft:emerald_block", - "tag": null + "id": "minecraft:emerald_block" }, "type": "minecraft:crafting_shaped" }, @@ -9871,7 +9814,9 @@ "item": "minecraft:deepslate_emerald_ore", "tag": null }, - "result": "minecraft:emerald", + "result": { + "id": "minecraft:emerald" + }, "type": "minecraft:blasting" }, "emerald_from_blasting_emerald_ore": { @@ -9884,7 +9829,9 @@ "item": "minecraft:emerald_ore", "tag": null }, - "result": "minecraft:emerald", + "result": { + "id": "minecraft:emerald" + }, "type": "minecraft:blasting" }, "emerald_from_smelting_deepslate_emerald_ore": { @@ -9897,7 +9844,9 @@ "item": "minecraft:deepslate_emerald_ore", "tag": null }, - "result": "minecraft:emerald", + "result": { + "id": "minecraft:emerald" + }, "type": "minecraft:smelting" }, "emerald_from_smelting_emerald_ore": { @@ -9910,7 +9859,9 @@ "item": "minecraft:emerald_ore", "tag": null }, - "result": "minecraft:emerald", + "result": { + "id": "minecraft:emerald" + }, "type": "minecraft:smelting" }, "enchanting_table": { @@ -9939,8 +9890,7 @@ ], "result": { "count": 1, - "item": "minecraft:enchanting_table", - "tag": null + "id": "minecraft:enchanting_table" }, "type": "minecraft:crafting_shaped" }, @@ -9970,8 +9920,7 @@ ], "result": { "count": 1, - "item": "minecraft:end_crystal", - "tag": null + "id": "minecraft:end_crystal" }, "type": "minecraft:crafting_shaped" }, @@ -9995,8 +9944,7 @@ ], "result": { "count": 4, - "item": "minecraft:end_rod", - "tag": null + "id": "minecraft:end_rod" }, "type": "minecraft:crafting_shaped" }, @@ -10014,29 +9962,32 @@ ], "result": { "count": 6, - "item": "minecraft:end_stone_brick_slab", - "tag": null + "id": "minecraft:end_stone_brick_slab" }, "type": "minecraft:crafting_shaped" }, "end_stone_brick_slab_from_end_stone_brick_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:end_stone_bricks", "tag": null }, - "result": "minecraft:end_stone_brick_slab", + "result": { + "count": 2, + "id": "minecraft:end_stone_brick_slab" + }, "type": "minecraft:stonecutting" }, "end_stone_brick_slab_from_end_stone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:end_stone", "tag": null }, - "result": "minecraft:end_stone_brick_slab", + "result": { + "count": 2, + "id": "minecraft:end_stone_brick_slab" + }, "type": "minecraft:stonecutting" }, "end_stone_brick_stairs": { @@ -10055,29 +10006,32 @@ ], "result": { "count": 4, - "item": "minecraft:end_stone_brick_stairs", - "tag": null + "id": "minecraft:end_stone_brick_stairs" }, "type": "minecraft:crafting_shaped" }, "end_stone_brick_stairs_from_end_stone_brick_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:end_stone_bricks", "tag": null }, - "result": "minecraft:end_stone_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:end_stone_brick_stairs" + }, "type": "minecraft:stonecutting" }, "end_stone_brick_stairs_from_end_stone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:end_stone", "tag": null }, - "result": "minecraft:end_stone_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:end_stone_brick_stairs" + }, "type": "minecraft:stonecutting" }, "end_stone_brick_wall": { @@ -10095,29 +10049,32 @@ ], "result": { "count": 6, - "item": "minecraft:end_stone_brick_wall", - "tag": null + "id": "minecraft:end_stone_brick_wall" }, "type": "minecraft:crafting_shaped" }, "end_stone_brick_wall_from_end_stone_brick_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:end_stone_bricks", "tag": null }, - "result": "minecraft:end_stone_brick_wall", + "result": { + "count": 1, + "id": "minecraft:end_stone_brick_wall" + }, "type": "minecraft:stonecutting" }, "end_stone_brick_wall_from_end_stone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:end_stone", "tag": null }, - "result": "minecraft:end_stone_brick_wall", + "result": { + "count": 1, + "id": "minecraft:end_stone_brick_wall" + }, "type": "minecraft:stonecutting" }, "end_stone_bricks": { @@ -10135,19 +10092,20 @@ ], "result": { "count": 4, - "item": "minecraft:end_stone_bricks", - "tag": null + "id": "minecraft:end_stone_bricks" }, "type": "minecraft:crafting_shaped" }, "end_stone_bricks_from_end_stone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:end_stone", "tag": null }, - "result": "minecraft:end_stone_bricks", + "result": { + "count": 1, + "id": "minecraft:end_stone_bricks" + }, "type": "minecraft:stonecutting" }, "ender_chest": { @@ -10171,8 +10129,7 @@ ], "result": { "count": 1, - "item": "minecraft:ender_chest", - "tag": null + "id": "minecraft:ender_chest" }, "type": "minecraft:crafting_shaped" }, @@ -10188,8 +10145,7 @@ ], "result": { "count": 1, - "item": "minecraft:ender_eye", - "tag": null + "id": "minecraft:ender_eye" }, "type": "minecraft:crafting_shapeless" }, @@ -10208,19 +10164,20 @@ ], "result": { "count": 4, - "item": "minecraft:exposed_cut_copper", - "tag": null + "id": "minecraft:exposed_cut_copper" }, "type": "minecraft:crafting_shaped" }, "exposed_cut_copper_from_exposed_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:exposed_copper", "tag": null }, - "result": "minecraft:exposed_cut_copper", + "result": { + "count": 4, + "id": "minecraft:exposed_cut_copper" + }, "type": "minecraft:stonecutting" }, "exposed_cut_copper_slab": { @@ -10237,29 +10194,32 @@ ], "result": { "count": 6, - "item": "minecraft:exposed_cut_copper_slab", - "tag": null + "id": "minecraft:exposed_cut_copper_slab" }, "type": "minecraft:crafting_shaped" }, "exposed_cut_copper_slab_from_exposed_copper_stonecutting": { - "count": 8, "ingredient": { "count": 1, "item": "minecraft:exposed_copper", "tag": null }, - "result": "minecraft:exposed_cut_copper_slab", + "result": { + "count": 8, + "id": "minecraft:exposed_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:exposed_cut_copper", "tag": null }, - "result": "minecraft:exposed_cut_copper_slab", + "result": { + "count": 2, + "id": "minecraft:exposed_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "exposed_cut_copper_stairs": { @@ -10278,29 +10238,32 @@ ], "result": { "count": 4, - "item": "minecraft:exposed_cut_copper_stairs", - "tag": null + "id": "minecraft:exposed_cut_copper_stairs" }, "type": "minecraft:crafting_shaped" }, "exposed_cut_copper_stairs_from_exposed_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:exposed_copper", "tag": null }, - "result": "minecraft:exposed_cut_copper_stairs", + "result": { + "count": 4, + "id": "minecraft:exposed_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:exposed_cut_copper", "tag": null }, - "result": "minecraft:exposed_cut_copper_stairs", + "result": { + "count": 1, + "id": "minecraft:exposed_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "eye_armor_trim_smithing_template": { @@ -10329,8 +10292,7 @@ ], "result": { "count": 2, - "item": "minecraft:eye_armor_trim_smithing_template", - "tag": null + "id": "minecraft:eye_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -10361,8 +10323,7 @@ ], "result": { "count": 1, - "item": "minecraft:fermented_spider_eye", - "tag": null + "id": "minecraft:fermented_spider_eye" }, "type": "minecraft:crafting_shapeless" }, @@ -10386,8 +10347,7 @@ ], "result": { "count": 3, - "item": "minecraft:fire_charge", - "tag": null + "id": "minecraft:fire_charge" }, "type": "minecraft:crafting_shapeless" }, @@ -10407,8 +10367,7 @@ ], "result": { "count": 3, - "item": "minecraft:firework_rocket", - "tag": null + "id": "minecraft:firework_rocket" }, "type": "minecraft:crafting_shapeless" }, @@ -10441,8 +10400,7 @@ ], "result": { "count": 1, - "item": "minecraft:fishing_rod", - "tag": null + "id": "minecraft:fishing_rod" }, "type": "minecraft:crafting_shaped" }, @@ -10466,8 +10424,7 @@ ], "result": { "count": 1, - "item": "minecraft:fletching_table", - "tag": null + "id": "minecraft:fletching_table" }, "type": "minecraft:crafting_shaped" }, @@ -10483,8 +10440,7 @@ ], "result": { "count": 1, - "item": "minecraft:flint_and_steel", - "tag": null + "id": "minecraft:flint_and_steel" }, "type": "minecraft:crafting_shapeless" }, @@ -10500,8 +10456,7 @@ ], "result": { "count": 1, - "item": "minecraft:flower_banner_pattern", - "tag": null + "id": "minecraft:flower_banner_pattern" }, "type": "minecraft:crafting_shapeless" }, @@ -10520,8 +10475,7 @@ ], "result": { "count": 1, - "item": "minecraft:flower_pot", - "tag": null + "id": "minecraft:flower_pot" }, "type": "minecraft:crafting_shaped" }, @@ -10540,8 +10494,7 @@ ], "result": { "count": 1, - "item": "minecraft:furnace", - "tag": null + "id": "minecraft:furnace" }, "type": "minecraft:crafting_shaped" }, @@ -10557,8 +10510,7 @@ ], "result": { "count": 1, - "item": "minecraft:furnace_minecart", - "tag": null + "id": "minecraft:furnace_minecart" }, "type": "minecraft:crafting_shapeless" }, @@ -10570,7 +10522,9 @@ "count": 1, "tag": "minecraft:smelts_to_glass" }, - "result": "minecraft:glass", + "result": { + "id": "minecraft:glass" + }, "type": "minecraft:smelting" }, "glass_bottle": { @@ -10588,8 +10542,7 @@ ], "result": { "count": 3, - "item": "minecraft:glass_bottle", - "tag": null + "id": "minecraft:glass_bottle" }, "type": "minecraft:crafting_shaped" }, @@ -10608,8 +10561,7 @@ ], "result": { "count": 16, - "item": "minecraft:glass_pane", - "tag": null + "id": "minecraft:glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -10634,8 +10586,7 @@ ], "result": { "count": 1, - "item": "minecraft:glistering_melon_slice", - "tag": null + "id": "minecraft:glistering_melon_slice" }, "type": "minecraft:crafting_shaped" }, @@ -10651,8 +10602,7 @@ ], "result": { "count": 1, - "item": "minecraft:glow_item_frame", - "tag": null + "id": "minecraft:glow_item_frame" }, "type": "minecraft:crafting_shapeless" }, @@ -10671,8 +10621,7 @@ ], "result": { "count": 1, - "item": "minecraft:glowstone", - "tag": null + "id": "minecraft:glowstone" }, "type": "minecraft:crafting_shaped" }, @@ -10692,8 +10641,7 @@ ], "result": { "count": 1, - "item": "minecraft:gold_block", - "tag": null + "id": "minecraft:gold_block" }, "type": "minecraft:crafting_shaped" }, @@ -10707,7 +10655,9 @@ "item": "minecraft:deepslate_gold_ore", "tag": null }, - "result": "minecraft:gold_ingot", + "result": { + "id": "minecraft:gold_ingot" + }, "type": "minecraft:blasting" }, "gold_ingot_from_blasting_gold_ore": { @@ -10720,7 +10670,9 @@ "item": "minecraft:gold_ore", "tag": null }, - "result": "minecraft:gold_ingot", + "result": { + "id": "minecraft:gold_ingot" + }, "type": "minecraft:blasting" }, "gold_ingot_from_blasting_nether_gold_ore": { @@ -10733,7 +10685,9 @@ "item": "minecraft:nether_gold_ore", "tag": null }, - "result": "minecraft:gold_ingot", + "result": { + "id": "minecraft:gold_ingot" + }, "type": "minecraft:blasting" }, "gold_ingot_from_blasting_raw_gold": { @@ -10746,7 +10700,9 @@ "item": "minecraft:raw_gold", "tag": null }, - "result": "minecraft:gold_ingot", + "result": { + "id": "minecraft:gold_ingot" + }, "type": "minecraft:blasting" }, "gold_ingot_from_gold_block": { @@ -10759,8 +10715,7 @@ ], "result": { "count": 9, - "item": "minecraft:gold_ingot", - "tag": null + "id": "minecraft:gold_ingot" }, "type": "minecraft:crafting_shapeless" }, @@ -10781,8 +10736,7 @@ ], "result": { "count": 1, - "item": "minecraft:gold_ingot", - "tag": null + "id": "minecraft:gold_ingot" }, "type": "minecraft:crafting_shaped" }, @@ -10796,7 +10750,9 @@ "item": "minecraft:deepslate_gold_ore", "tag": null }, - "result": "minecraft:gold_ingot", + "result": { + "id": "minecraft:gold_ingot" + }, "type": "minecraft:smelting" }, "gold_ingot_from_smelting_gold_ore": { @@ -10809,7 +10765,9 @@ "item": "minecraft:gold_ore", "tag": null }, - "result": "minecraft:gold_ingot", + "result": { + "id": "minecraft:gold_ingot" + }, "type": "minecraft:smelting" }, "gold_ingot_from_smelting_nether_gold_ore": { @@ -10822,7 +10780,9 @@ "item": "minecraft:nether_gold_ore", "tag": null }, - "result": "minecraft:gold_ingot", + "result": { + "id": "minecraft:gold_ingot" + }, "type": "minecraft:smelting" }, "gold_ingot_from_smelting_raw_gold": { @@ -10835,7 +10795,9 @@ "item": "minecraft:raw_gold", "tag": null }, - "result": "minecraft:gold_ingot", + "result": { + "id": "minecraft:gold_ingot" + }, "type": "minecraft:smelting" }, "gold_nugget": { @@ -10847,8 +10809,7 @@ ], "result": { "count": 9, - "item": "minecraft:gold_nugget", - "tag": null + "id": "minecraft:gold_nugget" }, "type": "minecraft:crafting_shapeless" }, @@ -10908,7 +10869,9 @@ "tag": null } ], - "result": "minecraft:gold_nugget", + "result": { + "id": "minecraft:gold_nugget" + }, "type": "minecraft:blasting" }, "gold_nugget_from_smelting": { @@ -10967,7 +10930,9 @@ "tag": null } ], - "result": "minecraft:gold_nugget", + "result": { + "id": "minecraft:gold_nugget" + }, "type": "minecraft:smelting" }, "golden_apple": { @@ -10991,8 +10956,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_apple", - "tag": null + "id": "minecraft:golden_apple" }, "type": "minecraft:crafting_shaped" }, @@ -11017,8 +10981,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_axe", - "tag": null + "id": "minecraft:golden_axe" }, "type": "minecraft:crafting_shaped" }, @@ -11037,8 +11000,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_boots", - "tag": null + "id": "minecraft:golden_boots" }, "type": "minecraft:crafting_shaped" }, @@ -11063,8 +11025,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_carrot", - "tag": null + "id": "minecraft:golden_carrot" }, "type": "minecraft:crafting_shaped" }, @@ -11084,8 +11045,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_chestplate", - "tag": null + "id": "minecraft:golden_chestplate" }, "type": "minecraft:crafting_shaped" }, @@ -11104,8 +11064,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_helmet", - "tag": null + "id": "minecraft:golden_helmet" }, "type": "minecraft:crafting_shaped" }, @@ -11130,8 +11089,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_hoe", - "tag": null + "id": "minecraft:golden_hoe" }, "type": "minecraft:crafting_shaped" }, @@ -11151,8 +11109,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_leggings", - "tag": null + "id": "minecraft:golden_leggings" }, "type": "minecraft:crafting_shaped" }, @@ -11177,8 +11134,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_pickaxe", - "tag": null + "id": "minecraft:golden_pickaxe" }, "type": "minecraft:crafting_shaped" }, @@ -11203,8 +11159,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_shovel", - "tag": null + "id": "minecraft:golden_shovel" }, "type": "minecraft:crafting_shaped" }, @@ -11229,8 +11184,7 @@ ], "result": { "count": 1, - "item": "minecraft:golden_sword", - "tag": null + "id": "minecraft:golden_sword" }, "type": "minecraft:crafting_shaped" }, @@ -11246,8 +11200,7 @@ ], "result": { "count": 1, - "item": "minecraft:granite", - "tag": null + "id": "minecraft:granite" }, "type": "minecraft:crafting_shapeless" }, @@ -11265,19 +11218,20 @@ ], "result": { "count": 6, - "item": "minecraft:granite_slab", - "tag": null + "id": "minecraft:granite_slab" }, "type": "minecraft:crafting_shaped" }, "granite_slab_from_granite_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:granite", "tag": null }, - "result": "minecraft:granite_slab", + "result": { + "count": 2, + "id": "minecraft:granite_slab" + }, "type": "minecraft:stonecutting" }, "granite_stairs": { @@ -11296,19 +11250,20 @@ ], "result": { "count": 4, - "item": "minecraft:granite_stairs", - "tag": null + "id": "minecraft:granite_stairs" }, "type": "minecraft:crafting_shaped" }, "granite_stairs_from_granite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:granite", "tag": null }, - "result": "minecraft:granite_stairs", + "result": { + "count": 1, + "id": "minecraft:granite_stairs" + }, "type": "minecraft:stonecutting" }, "granite_wall": { @@ -11326,19 +11281,20 @@ ], "result": { "count": 6, - "item": "minecraft:granite_wall", - "tag": null + "id": "minecraft:granite_wall" }, "type": "minecraft:crafting_shaped" }, "granite_wall_from_granite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:granite", "tag": null }, - "result": "minecraft:granite_wall", + "result": { + "count": 1, + "id": "minecraft:granite_wall" + }, "type": "minecraft:stonecutting" }, "gray_banner": { @@ -11363,8 +11319,7 @@ ], "result": { "count": 1, - "item": "minecraft:gray_banner", - "tag": null + "id": "minecraft:gray_banner" }, "type": "minecraft:crafting_shaped" }, @@ -11388,8 +11343,7 @@ ], "result": { "count": 1, - "item": "minecraft:gray_bed", - "tag": null + "id": "minecraft:gray_bed" }, "type": "minecraft:crafting_shaped" }, @@ -11406,8 +11360,7 @@ ], "result": { "count": 1, - "item": "minecraft:gray_candle", - "tag": null + "id": "minecraft:gray_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -11426,8 +11379,7 @@ ], "result": { "count": 3, - "item": "minecraft:gray_carpet", - "tag": null + "id": "minecraft:gray_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -11465,8 +11417,7 @@ ], "result": { "count": 8, - "item": "minecraft:gray_concrete_powder", - "tag": null + "id": "minecraft:gray_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -11482,8 +11433,7 @@ ], "result": { "count": 2, - "item": "minecraft:gray_dye", - "tag": null + "id": "minecraft:gray_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -11496,7 +11446,9 @@ "item": "minecraft:gray_terracotta", "tag": null }, - "result": "minecraft:gray_glazed_terracotta", + "result": { + "id": "minecraft:gray_glazed_terracotta" + }, "type": "minecraft:smelting" }, "gray_stained_glass": { @@ -11521,8 +11473,7 @@ ], "result": { "count": 8, - "item": "minecraft:gray_stained_glass", - "tag": null + "id": "minecraft:gray_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -11542,8 +11493,7 @@ ], "result": { "count": 16, - "item": "minecraft:gray_stained_glass_pane", - "tag": null + "id": "minecraft:gray_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -11569,8 +11519,7 @@ ], "result": { "count": 8, - "item": "minecraft:gray_stained_glass_pane", - "tag": null + "id": "minecraft:gray_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -11596,8 +11545,7 @@ ], "result": { "count": 8, - "item": "minecraft:gray_terracotta", - "tag": null + "id": "minecraft:gray_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -11623,8 +11571,7 @@ ], "result": { "count": 1, - "item": "minecraft:green_banner", - "tag": null + "id": "minecraft:green_banner" }, "type": "minecraft:crafting_shaped" }, @@ -11648,8 +11595,7 @@ ], "result": { "count": 1, - "item": "minecraft:green_bed", - "tag": null + "id": "minecraft:green_bed" }, "type": "minecraft:crafting_shaped" }, @@ -11666,8 +11612,7 @@ ], "result": { "count": 1, - "item": "minecraft:green_candle", - "tag": null + "id": "minecraft:green_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -11686,8 +11631,7 @@ ], "result": { "count": 3, - "item": "minecraft:green_carpet", - "tag": null + "id": "minecraft:green_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -11725,8 +11669,7 @@ ], "result": { "count": 8, - "item": "minecraft:green_concrete_powder", - "tag": null + "id": "minecraft:green_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -11739,7 +11682,9 @@ "item": "minecraft:cactus", "tag": null }, - "result": "minecraft:green_dye", + "result": { + "id": "minecraft:green_dye" + }, "type": "minecraft:smelting" }, "green_glazed_terracotta": { @@ -11751,7 +11696,9 @@ "item": "minecraft:green_terracotta", "tag": null }, - "result": "minecraft:green_glazed_terracotta", + "result": { + "id": "minecraft:green_glazed_terracotta" + }, "type": "minecraft:smelting" }, "green_stained_glass": { @@ -11776,8 +11723,7 @@ ], "result": { "count": 8, - "item": "minecraft:green_stained_glass", - "tag": null + "id": "minecraft:green_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -11797,8 +11743,7 @@ ], "result": { "count": 16, - "item": "minecraft:green_stained_glass_pane", - "tag": null + "id": "minecraft:green_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -11824,8 +11769,7 @@ ], "result": { "count": 8, - "item": "minecraft:green_stained_glass_pane", - "tag": null + "id": "minecraft:green_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -11851,8 +11795,7 @@ ], "result": { "count": 8, - "item": "minecraft:green_terracotta", - "tag": null + "id": "minecraft:green_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -11880,8 +11823,7 @@ ], "result": { "count": 1, - "item": "minecraft:grindstone", - "tag": null + "id": "minecraft:grindstone" }, "type": "minecraft:crafting_shaped" }, @@ -11918,8 +11860,7 @@ ], "result": { "count": 1, - "item": "minecraft:hay_block", - "tag": null + "id": "minecraft:hay_block" }, "type": "minecraft:crafting_shapeless" }, @@ -11937,8 +11878,7 @@ ], "result": { "count": 1, - "item": "minecraft:heavy_weighted_pressure_plate", - "tag": null + "id": "minecraft:heavy_weighted_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -11957,8 +11897,7 @@ ], "result": { "count": 1, - "item": "minecraft:honey_block", - "tag": null + "id": "minecraft:honey_block" }, "type": "minecraft:crafting_shaped" }, @@ -11983,8 +11922,7 @@ ], "result": { "count": 4, - "item": "minecraft:honey_bottle", - "tag": null + "id": "minecraft:honey_bottle" }, "type": "minecraft:crafting_shapeless" }, @@ -12003,8 +11941,7 @@ ], "result": { "count": 1, - "item": "minecraft:honeycomb_block", - "tag": null + "id": "minecraft:honeycomb_block" }, "type": "minecraft:crafting_shaped" }, @@ -12029,8 +11966,7 @@ ], "result": { "count": 1, - "item": "minecraft:hopper", - "tag": null + "id": "minecraft:hopper" }, "type": "minecraft:crafting_shaped" }, @@ -12046,8 +11982,7 @@ ], "result": { "count": 1, - "item": "minecraft:hopper_minecart", - "tag": null + "id": "minecraft:hopper_minecart" }, "type": "minecraft:crafting_shapeless" }, @@ -12077,8 +12012,7 @@ ], "result": { "count": 2, - "item": "minecraft:host_armor_trim_smithing_template", - "tag": null + "id": "minecraft:host_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -12115,8 +12049,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_axe", - "tag": null + "id": "minecraft:iron_axe" }, "type": "minecraft:crafting_shaped" }, @@ -12135,8 +12068,7 @@ ], "result": { "count": 16, - "item": "minecraft:iron_bars", - "tag": null + "id": "minecraft:iron_bars" }, "type": "minecraft:crafting_shaped" }, @@ -12156,8 +12088,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_block", - "tag": null + "id": "minecraft:iron_block" }, "type": "minecraft:crafting_shaped" }, @@ -12176,8 +12107,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_boots", - "tag": null + "id": "minecraft:iron_boots" }, "type": "minecraft:crafting_shaped" }, @@ -12197,8 +12127,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_chestplate", - "tag": null + "id": "minecraft:iron_chestplate" }, "type": "minecraft:crafting_shaped" }, @@ -12218,8 +12147,7 @@ ], "result": { "count": 3, - "item": "minecraft:iron_door", - "tag": null + "id": "minecraft:iron_door" }, "type": "minecraft:crafting_shaped" }, @@ -12238,8 +12166,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_helmet", - "tag": null + "id": "minecraft:iron_helmet" }, "type": "minecraft:crafting_shaped" }, @@ -12264,8 +12191,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_hoe", - "tag": null + "id": "minecraft:iron_hoe" }, "type": "minecraft:crafting_shaped" }, @@ -12279,7 +12205,9 @@ "item": "minecraft:deepslate_iron_ore", "tag": null }, - "result": "minecraft:iron_ingot", + "result": { + "id": "minecraft:iron_ingot" + }, "type": "minecraft:blasting" }, "iron_ingot_from_blasting_iron_ore": { @@ -12292,7 +12220,9 @@ "item": "minecraft:iron_ore", "tag": null }, - "result": "minecraft:iron_ingot", + "result": { + "id": "minecraft:iron_ingot" + }, "type": "minecraft:blasting" }, "iron_ingot_from_blasting_raw_iron": { @@ -12305,7 +12235,9 @@ "item": "minecraft:raw_iron", "tag": null }, - "result": "minecraft:iron_ingot", + "result": { + "id": "minecraft:iron_ingot" + }, "type": "minecraft:blasting" }, "iron_ingot_from_iron_block": { @@ -12318,8 +12250,7 @@ ], "result": { "count": 9, - "item": "minecraft:iron_ingot", - "tag": null + "id": "minecraft:iron_ingot" }, "type": "minecraft:crafting_shapeless" }, @@ -12340,8 +12271,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_ingot", - "tag": null + "id": "minecraft:iron_ingot" }, "type": "minecraft:crafting_shaped" }, @@ -12355,7 +12285,9 @@ "item": "minecraft:deepslate_iron_ore", "tag": null }, - "result": "minecraft:iron_ingot", + "result": { + "id": "minecraft:iron_ingot" + }, "type": "minecraft:smelting" }, "iron_ingot_from_smelting_iron_ore": { @@ -12368,7 +12300,9 @@ "item": "minecraft:iron_ore", "tag": null }, - "result": "minecraft:iron_ingot", + "result": { + "id": "minecraft:iron_ingot" + }, "type": "minecraft:smelting" }, "iron_ingot_from_smelting_raw_iron": { @@ -12381,7 +12315,9 @@ "item": "minecraft:raw_iron", "tag": null }, - "result": "minecraft:iron_ingot", + "result": { + "id": "minecraft:iron_ingot" + }, "type": "minecraft:smelting" }, "iron_leggings": { @@ -12400,8 +12336,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_leggings", - "tag": null + "id": "minecraft:iron_leggings" }, "type": "minecraft:crafting_shaped" }, @@ -12414,8 +12349,7 @@ ], "result": { "count": 9, - "item": "minecraft:iron_nugget", - "tag": null + "id": "minecraft:iron_nugget" }, "type": "minecraft:crafting_shapeless" }, @@ -12495,7 +12429,9 @@ "tag": null } ], - "result": "minecraft:iron_nugget", + "result": { + "id": "minecraft:iron_nugget" + }, "type": "minecraft:blasting" }, "iron_nugget_from_smelting": { @@ -12574,7 +12510,9 @@ "tag": null } ], - "result": "minecraft:iron_nugget", + "result": { + "id": "minecraft:iron_nugget" + }, "type": "minecraft:smelting" }, "iron_pickaxe": { @@ -12598,8 +12536,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_pickaxe", - "tag": null + "id": "minecraft:iron_pickaxe" }, "type": "minecraft:crafting_shaped" }, @@ -12624,8 +12561,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_shovel", - "tag": null + "id": "minecraft:iron_shovel" }, "type": "minecraft:crafting_shaped" }, @@ -12650,8 +12586,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_sword", - "tag": null + "id": "minecraft:iron_sword" }, "type": "minecraft:crafting_shaped" }, @@ -12670,8 +12605,7 @@ ], "result": { "count": 1, - "item": "minecraft:iron_trapdoor", - "tag": null + "id": "minecraft:iron_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -12696,8 +12630,7 @@ ], "result": { "count": 1, - "item": "minecraft:item_frame", - "tag": null + "id": "minecraft:item_frame" }, "type": "minecraft:crafting_shaped" }, @@ -12721,8 +12654,7 @@ ], "result": { "count": 1, - "item": "minecraft:jack_o_lantern", - "tag": null + "id": "minecraft:jack_o_lantern" }, "type": "minecraft:crafting_shaped" }, @@ -12746,8 +12678,7 @@ ], "result": { "count": 1, - "item": "minecraft:jukebox", - "tag": null + "id": "minecraft:jukebox" }, "type": "minecraft:crafting_shaped" }, @@ -12767,8 +12698,7 @@ ], "result": { "count": 1, - "item": "minecraft:jungle_boat", - "tag": null + "id": "minecraft:jungle_boat" }, "type": "minecraft:crafting_shaped" }, @@ -12782,8 +12712,7 @@ ], "result": { "count": 1, - "item": "minecraft:jungle_button", - "tag": null + "id": "minecraft:jungle_button" }, "type": "minecraft:crafting_shapeless" }, @@ -12800,8 +12729,7 @@ ], "result": { "count": 1, - "item": "minecraft:jungle_chest_boat", - "tag": null + "id": "minecraft:jungle_chest_boat" }, "type": "minecraft:crafting_shapeless" }, @@ -12822,8 +12750,7 @@ ], "result": { "count": 3, - "item": "minecraft:jungle_door", - "tag": null + "id": "minecraft:jungle_door" }, "type": "minecraft:crafting_shaped" }, @@ -12848,8 +12775,7 @@ ], "result": { "count": 3, - "item": "minecraft:jungle_fence", - "tag": null + "id": "minecraft:jungle_fence" }, "type": "minecraft:crafting_shaped" }, @@ -12874,8 +12800,7 @@ ], "result": { "count": 1, - "item": "minecraft:jungle_fence_gate", - "tag": null + "id": "minecraft:jungle_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -12901,8 +12826,7 @@ ], "result": { "count": 6, - "item": "minecraft:jungle_hanging_sign", - "tag": null + "id": "minecraft:jungle_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -12916,8 +12840,7 @@ ], "result": { "count": 4, - "item": "minecraft:jungle_planks", - "tag": null + "id": "minecraft:jungle_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -12936,8 +12859,7 @@ ], "result": { "count": 1, - "item": "minecraft:jungle_pressure_plate", - "tag": null + "id": "minecraft:jungle_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -12963,8 +12885,7 @@ ], "result": { "count": 3, - "item": "minecraft:jungle_sign", - "tag": null + "id": "minecraft:jungle_sign" }, "type": "minecraft:crafting_shaped" }, @@ -12983,8 +12904,7 @@ ], "result": { "count": 6, - "item": "minecraft:jungle_slab", - "tag": null + "id": "minecraft:jungle_slab" }, "type": "minecraft:crafting_shaped" }, @@ -13005,8 +12925,7 @@ ], "result": { "count": 4, - "item": "minecraft:jungle_stairs", - "tag": null + "id": "minecraft:jungle_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -13026,8 +12945,7 @@ ], "result": { "count": 2, - "item": "minecraft:jungle_trapdoor", - "tag": null + "id": "minecraft:jungle_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -13047,8 +12965,7 @@ ], "result": { "count": 3, - "item": "minecraft:jungle_wood", - "tag": null + "id": "minecraft:jungle_wood" }, "type": "minecraft:crafting_shaped" }, @@ -13068,8 +12985,7 @@ ], "result": { "count": 3, - "item": "minecraft:ladder", - "tag": null + "id": "minecraft:ladder" }, "type": "minecraft:crafting_shaped" }, @@ -13094,8 +13010,7 @@ ], "result": { "count": 1, - "item": "minecraft:lantern", - "tag": null + "id": "minecraft:lantern" }, "type": "minecraft:crafting_shaped" }, @@ -13115,8 +13030,7 @@ ], "result": { "count": 1, - "item": "minecraft:lapis_block", - "tag": null + "id": "minecraft:lapis_block" }, "type": "minecraft:crafting_shaped" }, @@ -13129,8 +13043,7 @@ ], "result": { "count": 9, - "item": "minecraft:lapis_lazuli", - "tag": null + "id": "minecraft:lapis_lazuli" }, "type": "minecraft:crafting_shapeless" }, @@ -13144,7 +13057,9 @@ "item": "minecraft:deepslate_lapis_ore", "tag": null }, - "result": "minecraft:lapis_lazuli", + "result": { + "id": "minecraft:lapis_lazuli" + }, "type": "minecraft:blasting" }, "lapis_lazuli_from_blasting_lapis_ore": { @@ -13157,7 +13072,9 @@ "item": "minecraft:lapis_ore", "tag": null }, - "result": "minecraft:lapis_lazuli", + "result": { + "id": "minecraft:lapis_lazuli" + }, "type": "minecraft:blasting" }, "lapis_lazuli_from_smelting_deepslate_lapis_ore": { @@ -13170,7 +13087,9 @@ "item": "minecraft:deepslate_lapis_ore", "tag": null }, - "result": "minecraft:lapis_lazuli", + "result": { + "id": "minecraft:lapis_lazuli" + }, "type": "minecraft:smelting" }, "lapis_lazuli_from_smelting_lapis_ore": { @@ -13183,7 +13102,9 @@ "item": "minecraft:lapis_ore", "tag": null }, - "result": "minecraft:lapis_lazuli", + "result": { + "id": "minecraft:lapis_lazuli" + }, "type": "minecraft:smelting" }, "lead": { @@ -13207,8 +13128,7 @@ ], "result": { "count": 2, - "item": "minecraft:lead", - "tag": null + "id": "minecraft:lead" }, "type": "minecraft:crafting_shaped" }, @@ -13227,8 +13147,7 @@ ], "result": { "count": 1, - "item": "minecraft:leather", - "tag": null + "id": "minecraft:leather" }, "type": "minecraft:crafting_shaped" }, @@ -13247,8 +13166,7 @@ ], "result": { "count": 1, - "item": "minecraft:leather_boots", - "tag": null + "id": "minecraft:leather_boots" }, "type": "minecraft:crafting_shaped" }, @@ -13268,8 +13186,7 @@ ], "result": { "count": 1, - "item": "minecraft:leather_chestplate", - "tag": null + "id": "minecraft:leather_chestplate" }, "type": "minecraft:crafting_shaped" }, @@ -13288,8 +13205,7 @@ ], "result": { "count": 1, - "item": "minecraft:leather_helmet", - "tag": null + "id": "minecraft:leather_helmet" }, "type": "minecraft:crafting_shaped" }, @@ -13309,8 +13225,7 @@ ], "result": { "count": 1, - "item": "minecraft:leather_horse_armor", - "tag": null + "id": "minecraft:leather_horse_armor" }, "type": "minecraft:crafting_shaped" }, @@ -13330,8 +13245,7 @@ ], "result": { "count": 1, - "item": "minecraft:leather_leggings", - "tag": null + "id": "minecraft:leather_leggings" }, "type": "minecraft:crafting_shaped" }, @@ -13355,8 +13269,7 @@ ], "result": { "count": 1, - "item": "minecraft:lectern", - "tag": null + "id": "minecraft:lectern" }, "type": "minecraft:crafting_shaped" }, @@ -13380,8 +13293,7 @@ ], "result": { "count": 1, - "item": "minecraft:lever", - "tag": null + "id": "minecraft:lever" }, "type": "minecraft:crafting_shaped" }, @@ -13407,8 +13319,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_blue_banner", - "tag": null + "id": "minecraft:light_blue_banner" }, "type": "minecraft:crafting_shaped" }, @@ -13432,8 +13343,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_blue_bed", - "tag": null + "id": "minecraft:light_blue_bed" }, "type": "minecraft:crafting_shaped" }, @@ -13450,8 +13360,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_blue_candle", - "tag": null + "id": "minecraft:light_blue_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -13470,8 +13379,7 @@ ], "result": { "count": 3, - "item": "minecraft:light_blue_carpet", - "tag": null + "id": "minecraft:light_blue_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -13509,8 +13417,7 @@ ], "result": { "count": 8, - "item": "minecraft:light_blue_concrete_powder", - "tag": null + "id": "minecraft:light_blue_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -13524,8 +13431,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_blue_dye", - "tag": null + "id": "minecraft:light_blue_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -13542,8 +13448,7 @@ ], "result": { "count": 2, - "item": "minecraft:light_blue_dye", - "tag": null + "id": "minecraft:light_blue_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -13556,7 +13461,9 @@ "item": "minecraft:light_blue_terracotta", "tag": null }, - "result": "minecraft:light_blue_glazed_terracotta", + "result": { + "id": "minecraft:light_blue_glazed_terracotta" + }, "type": "minecraft:smelting" }, "light_blue_stained_glass": { @@ -13581,8 +13488,7 @@ ], "result": { "count": 8, - "item": "minecraft:light_blue_stained_glass", - "tag": null + "id": "minecraft:light_blue_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -13602,8 +13508,7 @@ ], "result": { "count": 16, - "item": "minecraft:light_blue_stained_glass_pane", - "tag": null + "id": "minecraft:light_blue_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -13629,8 +13534,7 @@ ], "result": { "count": 8, - "item": "minecraft:light_blue_stained_glass_pane", - "tag": null + "id": "minecraft:light_blue_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -13656,8 +13560,7 @@ ], "result": { "count": 8, - "item": "minecraft:light_blue_terracotta", - "tag": null + "id": "minecraft:light_blue_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -13683,8 +13586,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_gray_banner", - "tag": null + "id": "minecraft:light_gray_banner" }, "type": "minecraft:crafting_shaped" }, @@ -13708,8 +13610,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_gray_bed", - "tag": null + "id": "minecraft:light_gray_bed" }, "type": "minecraft:crafting_shaped" }, @@ -13726,8 +13627,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_gray_candle", - "tag": null + "id": "minecraft:light_gray_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -13746,8 +13646,7 @@ ], "result": { "count": 3, - "item": "minecraft:light_gray_carpet", - "tag": null + "id": "minecraft:light_gray_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -13785,8 +13684,7 @@ ], "result": { "count": 8, - "item": "minecraft:light_gray_concrete_powder", - "tag": null + "id": "minecraft:light_gray_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -13800,8 +13698,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_gray_dye", - "tag": null + "id": "minecraft:light_gray_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -13821,8 +13718,7 @@ ], "result": { "count": 3, - "item": "minecraft:light_gray_dye", - "tag": null + "id": "minecraft:light_gray_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -13839,8 +13735,7 @@ ], "result": { "count": 2, - "item": "minecraft:light_gray_dye", - "tag": null + "id": "minecraft:light_gray_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -13854,8 +13749,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_gray_dye", - "tag": null + "id": "minecraft:light_gray_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -13869,8 +13763,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_gray_dye", - "tag": null + "id": "minecraft:light_gray_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -13883,7 +13776,9 @@ "item": "minecraft:light_gray_terracotta", "tag": null }, - "result": "minecraft:light_gray_glazed_terracotta", + "result": { + "id": "minecraft:light_gray_glazed_terracotta" + }, "type": "minecraft:smelting" }, "light_gray_stained_glass": { @@ -13908,8 +13803,7 @@ ], "result": { "count": 8, - "item": "minecraft:light_gray_stained_glass", - "tag": null + "id": "minecraft:light_gray_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -13929,8 +13823,7 @@ ], "result": { "count": 16, - "item": "minecraft:light_gray_stained_glass_pane", - "tag": null + "id": "minecraft:light_gray_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -13956,8 +13849,7 @@ ], "result": { "count": 8, - "item": "minecraft:light_gray_stained_glass_pane", - "tag": null + "id": "minecraft:light_gray_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -13983,8 +13875,7 @@ ], "result": { "count": 8, - "item": "minecraft:light_gray_terracotta", - "tag": null + "id": "minecraft:light_gray_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -14002,8 +13893,7 @@ ], "result": { "count": 1, - "item": "minecraft:light_weighted_pressure_plate", - "tag": null + "id": "minecraft:light_weighted_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -14023,8 +13913,7 @@ ], "result": { "count": 1, - "item": "minecraft:lightning_rod", - "tag": null + "id": "minecraft:lightning_rod" }, "type": "minecraft:crafting_shaped" }, @@ -14050,8 +13939,7 @@ ], "result": { "count": 1, - "item": "minecraft:lime_banner", - "tag": null + "id": "minecraft:lime_banner" }, "type": "minecraft:crafting_shaped" }, @@ -14075,8 +13963,7 @@ ], "result": { "count": 1, - "item": "minecraft:lime_bed", - "tag": null + "id": "minecraft:lime_bed" }, "type": "minecraft:crafting_shaped" }, @@ -14093,8 +13980,7 @@ ], "result": { "count": 1, - "item": "minecraft:lime_candle", - "tag": null + "id": "minecraft:lime_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -14113,8 +13999,7 @@ ], "result": { "count": 3, - "item": "minecraft:lime_carpet", - "tag": null + "id": "minecraft:lime_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -14152,8 +14037,7 @@ ], "result": { "count": 8, - "item": "minecraft:lime_concrete_powder", - "tag": null + "id": "minecraft:lime_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -14169,8 +14053,7 @@ ], "result": { "count": 2, - "item": "minecraft:lime_dye", - "tag": null + "id": "minecraft:lime_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -14183,7 +14066,9 @@ "item": "minecraft:sea_pickle", "tag": null }, - "result": "minecraft:lime_dye", + "result": { + "id": "minecraft:lime_dye" + }, "type": "minecraft:smelting" }, "lime_glazed_terracotta": { @@ -14195,7 +14080,9 @@ "item": "minecraft:lime_terracotta", "tag": null }, - "result": "minecraft:lime_glazed_terracotta", + "result": { + "id": "minecraft:lime_glazed_terracotta" + }, "type": "minecraft:smelting" }, "lime_stained_glass": { @@ -14220,8 +14107,7 @@ ], "result": { "count": 8, - "item": "minecraft:lime_stained_glass", - "tag": null + "id": "minecraft:lime_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -14241,8 +14127,7 @@ ], "result": { "count": 16, - "item": "minecraft:lime_stained_glass_pane", - "tag": null + "id": "minecraft:lime_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -14268,8 +14153,7 @@ ], "result": { "count": 8, - "item": "minecraft:lime_stained_glass_pane", - "tag": null + "id": "minecraft:lime_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -14295,8 +14179,7 @@ ], "result": { "count": 8, - "item": "minecraft:lime_terracotta", - "tag": null + "id": "minecraft:lime_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -14321,8 +14204,7 @@ ], "result": { "count": 1, - "item": "minecraft:lodestone", - "tag": null + "id": "minecraft:lodestone" }, "type": "minecraft:crafting_shaped" }, @@ -14345,8 +14227,7 @@ ], "result": { "count": 1, - "item": "minecraft:loom", - "tag": null + "id": "minecraft:loom" }, "type": "minecraft:crafting_shaped" }, @@ -14372,8 +14253,7 @@ ], "result": { "count": 1, - "item": "minecraft:magenta_banner", - "tag": null + "id": "minecraft:magenta_banner" }, "type": "minecraft:crafting_shaped" }, @@ -14397,8 +14277,7 @@ ], "result": { "count": 1, - "item": "minecraft:magenta_bed", - "tag": null + "id": "minecraft:magenta_bed" }, "type": "minecraft:crafting_shaped" }, @@ -14415,8 +14294,7 @@ ], "result": { "count": 1, - "item": "minecraft:magenta_candle", - "tag": null + "id": "minecraft:magenta_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -14435,8 +14313,7 @@ ], "result": { "count": 3, - "item": "minecraft:magenta_carpet", - "tag": null + "id": "minecraft:magenta_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -14474,8 +14351,7 @@ ], "result": { "count": 8, - "item": "minecraft:magenta_concrete_powder", - "tag": null + "id": "minecraft:magenta_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -14489,8 +14365,7 @@ ], "result": { "count": 1, - "item": "minecraft:magenta_dye", - "tag": null + "id": "minecraft:magenta_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -14510,8 +14385,7 @@ ], "result": { "count": 3, - "item": "minecraft:magenta_dye", - "tag": null + "id": "minecraft:magenta_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -14534,8 +14408,7 @@ ], "result": { "count": 4, - "item": "minecraft:magenta_dye", - "tag": null + "id": "minecraft:magenta_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -14549,8 +14422,7 @@ ], "result": { "count": 2, - "item": "minecraft:magenta_dye", - "tag": null + "id": "minecraft:magenta_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -14567,8 +14439,7 @@ ], "result": { "count": 2, - "item": "minecraft:magenta_dye", - "tag": null + "id": "minecraft:magenta_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -14581,7 +14452,9 @@ "item": "minecraft:magenta_terracotta", "tag": null }, - "result": "minecraft:magenta_glazed_terracotta", + "result": { + "id": "minecraft:magenta_glazed_terracotta" + }, "type": "minecraft:smelting" }, "magenta_stained_glass": { @@ -14606,8 +14479,7 @@ ], "result": { "count": 8, - "item": "minecraft:magenta_stained_glass", - "tag": null + "id": "minecraft:magenta_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -14627,8 +14499,7 @@ ], "result": { "count": 16, - "item": "minecraft:magenta_stained_glass_pane", - "tag": null + "id": "minecraft:magenta_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -14654,8 +14525,7 @@ ], "result": { "count": 8, - "item": "minecraft:magenta_stained_glass_pane", - "tag": null + "id": "minecraft:magenta_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -14681,8 +14551,7 @@ ], "result": { "count": 8, - "item": "minecraft:magenta_terracotta", - "tag": null + "id": "minecraft:magenta_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -14701,8 +14570,7 @@ ], "result": { "count": 1, - "item": "minecraft:magma_block", - "tag": null + "id": "minecraft:magma_block" }, "type": "minecraft:crafting_shaped" }, @@ -14718,8 +14586,7 @@ ], "result": { "count": 1, - "item": "minecraft:magma_cream", - "tag": null + "id": "minecraft:magma_cream" }, "type": "minecraft:crafting_shapeless" }, @@ -14739,8 +14606,7 @@ ], "result": { "count": 1, - "item": "minecraft:mangrove_boat", - "tag": null + "id": "minecraft:mangrove_boat" }, "type": "minecraft:crafting_shaped" }, @@ -14754,8 +14620,7 @@ ], "result": { "count": 1, - "item": "minecraft:mangrove_button", - "tag": null + "id": "minecraft:mangrove_button" }, "type": "minecraft:crafting_shapeless" }, @@ -14772,8 +14637,7 @@ ], "result": { "count": 1, - "item": "minecraft:mangrove_chest_boat", - "tag": null + "id": "minecraft:mangrove_chest_boat" }, "type": "minecraft:crafting_shapeless" }, @@ -14794,8 +14658,7 @@ ], "result": { "count": 3, - "item": "minecraft:mangrove_door", - "tag": null + "id": "minecraft:mangrove_door" }, "type": "minecraft:crafting_shaped" }, @@ -14820,8 +14683,7 @@ ], "result": { "count": 3, - "item": "minecraft:mangrove_fence", - "tag": null + "id": "minecraft:mangrove_fence" }, "type": "minecraft:crafting_shaped" }, @@ -14846,8 +14708,7 @@ ], "result": { "count": 1, - "item": "minecraft:mangrove_fence_gate", - "tag": null + "id": "minecraft:mangrove_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -14873,8 +14734,7 @@ ], "result": { "count": 6, - "item": "minecraft:mangrove_hanging_sign", - "tag": null + "id": "minecraft:mangrove_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -14888,8 +14748,7 @@ ], "result": { "count": 4, - "item": "minecraft:mangrove_planks", - "tag": null + "id": "minecraft:mangrove_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -14908,8 +14767,7 @@ ], "result": { "count": 1, - "item": "minecraft:mangrove_pressure_plate", - "tag": null + "id": "minecraft:mangrove_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -14935,8 +14793,7 @@ ], "result": { "count": 3, - "item": "minecraft:mangrove_sign", - "tag": null + "id": "minecraft:mangrove_sign" }, "type": "minecraft:crafting_shaped" }, @@ -14955,8 +14812,7 @@ ], "result": { "count": 6, - "item": "minecraft:mangrove_slab", - "tag": null + "id": "minecraft:mangrove_slab" }, "type": "minecraft:crafting_shaped" }, @@ -14977,8 +14833,7 @@ ], "result": { "count": 4, - "item": "minecraft:mangrove_stairs", - "tag": null + "id": "minecraft:mangrove_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -14998,8 +14853,7 @@ ], "result": { "count": 2, - "item": "minecraft:mangrove_trapdoor", - "tag": null + "id": "minecraft:mangrove_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -15019,8 +14873,7 @@ ], "result": { "count": 3, - "item": "minecraft:mangrove_wood", - "tag": null + "id": "minecraft:mangrove_wood" }, "type": "minecraft:crafting_shaped" }, @@ -15045,8 +14898,7 @@ ], "result": { "count": 1, - "item": "minecraft:map", - "tag": null + "id": "minecraft:map" }, "type": "minecraft:crafting_shaped" }, @@ -15091,8 +14943,7 @@ ], "result": { "count": 1, - "item": "minecraft:melon", - "tag": null + "id": "minecraft:melon" }, "type": "minecraft:crafting_shapeless" }, @@ -15105,8 +14956,7 @@ ], "result": { "count": 1, - "item": "minecraft:melon_seeds", - "tag": null + "id": "minecraft:melon_seeds" }, "type": "minecraft:crafting_shapeless" }, @@ -15125,8 +14975,7 @@ ], "result": { "count": 1, - "item": "minecraft:minecart", - "tag": null + "id": "minecraft:minecart" }, "type": "minecraft:crafting_shaped" }, @@ -15142,8 +14991,7 @@ ], "result": { "count": 1, - "item": "minecraft:mojang_banner_pattern", - "tag": null + "id": "minecraft:mojang_banner_pattern" }, "type": "minecraft:crafting_shapeless" }, @@ -15162,8 +15010,7 @@ ], "result": { "count": 3, - "item": "minecraft:moss_carpet", - "tag": null + "id": "minecraft:moss_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -15180,8 +15027,7 @@ ], "result": { "count": 1, - "item": "minecraft:mossy_cobblestone", - "tag": null + "id": "minecraft:mossy_cobblestone" }, "type": "minecraft:crafting_shapeless" }, @@ -15198,8 +15044,7 @@ ], "result": { "count": 1, - "item": "minecraft:mossy_cobblestone", - "tag": null + "id": "minecraft:mossy_cobblestone" }, "type": "minecraft:crafting_shapeless" }, @@ -15217,19 +15062,20 @@ ], "result": { "count": 6, - "item": "minecraft:mossy_cobblestone_slab", - "tag": null + "id": "minecraft:mossy_cobblestone_slab" }, "type": "minecraft:crafting_shaped" }, "mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:mossy_cobblestone", "tag": null }, - "result": "minecraft:mossy_cobblestone_slab", + "result": { + "count": 2, + "id": "minecraft:mossy_cobblestone_slab" + }, "type": "minecraft:stonecutting" }, "mossy_cobblestone_stairs": { @@ -15248,19 +15094,20 @@ ], "result": { "count": 4, - "item": "minecraft:mossy_cobblestone_stairs", - "tag": null + "id": "minecraft:mossy_cobblestone_stairs" }, "type": "minecraft:crafting_shaped" }, "mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:mossy_cobblestone", "tag": null }, - "result": "minecraft:mossy_cobblestone_stairs", + "result": { + "count": 1, + "id": "minecraft:mossy_cobblestone_stairs" + }, "type": "minecraft:stonecutting" }, "mossy_cobblestone_wall": { @@ -15278,19 +15125,20 @@ ], "result": { "count": 6, - "item": "minecraft:mossy_cobblestone_wall", - "tag": null + "id": "minecraft:mossy_cobblestone_wall" }, "type": "minecraft:crafting_shaped" }, "mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:mossy_cobblestone", "tag": null }, - "result": "minecraft:mossy_cobblestone_wall", + "result": { + "count": 1, + "id": "minecraft:mossy_cobblestone_wall" + }, "type": "minecraft:stonecutting" }, "mossy_stone_brick_slab": { @@ -15307,19 +15155,20 @@ ], "result": { "count": 6, - "item": "minecraft:mossy_stone_brick_slab", - "tag": null + "id": "minecraft:mossy_stone_brick_slab" }, "type": "minecraft:crafting_shaped" }, "mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:mossy_stone_bricks", "tag": null }, - "result": "minecraft:mossy_stone_brick_slab", + "result": { + "count": 2, + "id": "minecraft:mossy_stone_brick_slab" + }, "type": "minecraft:stonecutting" }, "mossy_stone_brick_stairs": { @@ -15338,19 +15187,20 @@ ], "result": { "count": 4, - "item": "minecraft:mossy_stone_brick_stairs", - "tag": null + "id": "minecraft:mossy_stone_brick_stairs" }, "type": "minecraft:crafting_shaped" }, "mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:mossy_stone_bricks", "tag": null }, - "result": "minecraft:mossy_stone_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:mossy_stone_brick_stairs" + }, "type": "minecraft:stonecutting" }, "mossy_stone_brick_wall": { @@ -15368,19 +15218,20 @@ ], "result": { "count": 6, - "item": "minecraft:mossy_stone_brick_wall", - "tag": null + "id": "minecraft:mossy_stone_brick_wall" }, "type": "minecraft:crafting_shaped" }, "mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:mossy_stone_bricks", "tag": null }, - "result": "minecraft:mossy_stone_brick_wall", + "result": { + "count": 1, + "id": "minecraft:mossy_stone_brick_wall" + }, "type": "minecraft:stonecutting" }, "mossy_stone_bricks_from_moss_block": { @@ -15396,8 +15247,7 @@ ], "result": { "count": 1, - "item": "minecraft:mossy_stone_bricks", - "tag": null + "id": "minecraft:mossy_stone_bricks" }, "type": "minecraft:crafting_shapeless" }, @@ -15414,8 +15264,7 @@ ], "result": { "count": 1, - "item": "minecraft:mossy_stone_bricks", - "tag": null + "id": "minecraft:mossy_stone_bricks" }, "type": "minecraft:crafting_shapeless" }, @@ -15433,19 +15282,20 @@ ], "result": { "count": 6, - "item": "minecraft:mud_brick_slab", - "tag": null + "id": "minecraft:mud_brick_slab" }, "type": "minecraft:crafting_shaped" }, "mud_brick_slab_from_mud_bricks_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:mud_bricks", "tag": null }, - "result": "minecraft:mud_brick_slab", + "result": { + "count": 2, + "id": "minecraft:mud_brick_slab" + }, "type": "minecraft:stonecutting" }, "mud_brick_stairs": { @@ -15464,19 +15314,20 @@ ], "result": { "count": 4, - "item": "minecraft:mud_brick_stairs", - "tag": null + "id": "minecraft:mud_brick_stairs" }, "type": "minecraft:crafting_shaped" }, "mud_brick_stairs_from_mud_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:mud_bricks", "tag": null }, - "result": "minecraft:mud_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:mud_brick_stairs" + }, "type": "minecraft:stonecutting" }, "mud_brick_wall": { @@ -15494,19 +15345,20 @@ ], "result": { "count": 6, - "item": "minecraft:mud_brick_wall", - "tag": null + "id": "minecraft:mud_brick_wall" }, "type": "minecraft:crafting_shaped" }, "mud_brick_wall_from_mud_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:mud_bricks", "tag": null }, - "result": "minecraft:mud_brick_wall", + "result": { + "count": 1, + "id": "minecraft:mud_brick_wall" + }, "type": "minecraft:stonecutting" }, "mud_bricks": { @@ -15524,8 +15376,7 @@ ], "result": { "count": 4, - "item": "minecraft:mud_bricks", - "tag": null + "id": "minecraft:mud_bricks" }, "type": "minecraft:crafting_shaped" }, @@ -15541,8 +15392,7 @@ ], "result": { "count": 1, - "item": "minecraft:muddy_mangrove_roots", - "tag": null + "id": "minecraft:muddy_mangrove_roots" }, "type": "minecraft:crafting_shapeless" }, @@ -15561,8 +15411,7 @@ ], "result": { "count": 1, - "item": "minecraft:mushroom_stew", - "tag": null + "id": "minecraft:mushroom_stew" }, "type": "minecraft:crafting_shapeless" }, @@ -15599,8 +15448,7 @@ ], "result": { "count": 1, - "item": "minecraft:music_disc_5", - "tag": null + "id": "minecraft:music_disc_5" }, "type": "minecraft:crafting_shapeless" }, @@ -15613,7 +15461,9 @@ "item": "minecraft:netherrack", "tag": null }, - "result": "minecraft:nether_brick", + "result": { + "id": "minecraft:nether_brick" + }, "type": "minecraft:smelting" }, "nether_brick_fence": { @@ -15636,8 +15486,7 @@ ], "result": { "count": 6, - "item": "minecraft:nether_brick_fence", - "tag": null + "id": "minecraft:nether_brick_fence" }, "type": "minecraft:crafting_shaped" }, @@ -15655,19 +15504,20 @@ ], "result": { "count": 6, - "item": "minecraft:nether_brick_slab", - "tag": null + "id": "minecraft:nether_brick_slab" }, "type": "minecraft:crafting_shaped" }, "nether_brick_slab_from_nether_bricks_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:nether_bricks", "tag": null }, - "result": "minecraft:nether_brick_slab", + "result": { + "count": 2, + "id": "minecraft:nether_brick_slab" + }, "type": "minecraft:stonecutting" }, "nether_brick_stairs": { @@ -15686,19 +15536,20 @@ ], "result": { "count": 4, - "item": "minecraft:nether_brick_stairs", - "tag": null + "id": "minecraft:nether_brick_stairs" }, "type": "minecraft:crafting_shaped" }, "nether_brick_stairs_from_nether_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:nether_bricks", "tag": null }, - "result": "minecraft:nether_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:nether_brick_stairs" + }, "type": "minecraft:stonecutting" }, "nether_brick_wall": { @@ -15716,19 +15567,20 @@ ], "result": { "count": 6, - "item": "minecraft:nether_brick_wall", - "tag": null + "id": "minecraft:nether_brick_wall" }, "type": "minecraft:crafting_shaped" }, "nether_brick_wall_from_nether_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:nether_bricks", "tag": null }, - "result": "minecraft:nether_brick_wall", + "result": { + "count": 1, + "id": "minecraft:nether_brick_wall" + }, "type": "minecraft:stonecutting" }, "nether_bricks": { @@ -15746,8 +15598,7 @@ ], "result": { "count": 1, - "item": "minecraft:nether_bricks", - "tag": null + "id": "minecraft:nether_bricks" }, "type": "minecraft:crafting_shaped" }, @@ -15784,8 +15635,7 @@ ], "result": { "count": 1, - "item": "minecraft:nether_wart_block", - "tag": null + "id": "minecraft:nether_wart_block" }, "type": "minecraft:crafting_shapeless" }, @@ -15798,8 +15648,7 @@ }, "result": { "count": 1, - "item": "minecraft:netherite_axe", - "tag": null + "id": "minecraft:netherite_axe" }, "template": { "item": "minecraft:netherite_upgrade_smithing_template" @@ -15822,8 +15671,7 @@ ], "result": { "count": 1, - "item": "minecraft:netherite_block", - "tag": null + "id": "minecraft:netherite_block" }, "type": "minecraft:crafting_shaped" }, @@ -15836,8 +15684,7 @@ }, "result": { "count": 1, - "item": "minecraft:netherite_boots", - "tag": null + "id": "minecraft:netherite_boots" }, "template": { "item": "minecraft:netherite_upgrade_smithing_template" @@ -15853,8 +15700,7 @@ }, "result": { "count": 1, - "item": "minecraft:netherite_chestplate", - "tag": null + "id": "minecraft:netherite_chestplate" }, "template": { "item": "minecraft:netherite_upgrade_smithing_template" @@ -15870,8 +15716,7 @@ }, "result": { "count": 1, - "item": "minecraft:netherite_helmet", - "tag": null + "id": "minecraft:netherite_helmet" }, "template": { "item": "minecraft:netherite_upgrade_smithing_template" @@ -15887,8 +15732,7 @@ }, "result": { "count": 1, - "item": "minecraft:netherite_hoe", - "tag": null + "id": "minecraft:netherite_hoe" }, "template": { "item": "minecraft:netherite_upgrade_smithing_template" @@ -15926,8 +15770,7 @@ ], "result": { "count": 1, - "item": "minecraft:netherite_ingot", - "tag": null + "id": "minecraft:netherite_ingot" }, "type": "minecraft:crafting_shapeless" }, @@ -15941,8 +15784,7 @@ ], "result": { "count": 9, - "item": "minecraft:netherite_ingot", - "tag": null + "id": "minecraft:netherite_ingot" }, "type": "minecraft:crafting_shapeless" }, @@ -15955,8 +15797,7 @@ }, "result": { "count": 1, - "item": "minecraft:netherite_leggings", - "tag": null + "id": "minecraft:netherite_leggings" }, "template": { "item": "minecraft:netherite_upgrade_smithing_template" @@ -15972,8 +15813,7 @@ }, "result": { "count": 1, - "item": "minecraft:netherite_pickaxe", - "tag": null + "id": "minecraft:netherite_pickaxe" }, "template": { "item": "minecraft:netherite_upgrade_smithing_template" @@ -15989,7 +15829,9 @@ "item": "minecraft:ancient_debris", "tag": null }, - "result": "minecraft:netherite_scrap", + "result": { + "id": "minecraft:netherite_scrap" + }, "type": "minecraft:smelting" }, "netherite_scrap_from_blasting": { @@ -16001,7 +15843,9 @@ "item": "minecraft:ancient_debris", "tag": null }, - "result": "minecraft:netherite_scrap", + "result": { + "id": "minecraft:netherite_scrap" + }, "type": "minecraft:blasting" }, "netherite_shovel_smithing": { @@ -16013,8 +15857,7 @@ }, "result": { "count": 1, - "item": "minecraft:netherite_shovel", - "tag": null + "id": "minecraft:netherite_shovel" }, "template": { "item": "minecraft:netherite_upgrade_smithing_template" @@ -16030,8 +15873,7 @@ }, "result": { "count": 1, - "item": "minecraft:netherite_sword", - "tag": null + "id": "minecraft:netherite_sword" }, "template": { "item": "minecraft:netherite_upgrade_smithing_template" @@ -16064,8 +15906,7 @@ ], "result": { "count": 2, - "item": "minecraft:netherite_upgrade_smithing_template", - "tag": null + "id": "minecraft:netherite_upgrade_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -16089,8 +15930,7 @@ ], "result": { "count": 1, - "item": "minecraft:note_block", - "tag": null + "id": "minecraft:note_block" }, "type": "minecraft:crafting_shaped" }, @@ -16110,8 +15950,7 @@ ], "result": { "count": 1, - "item": "minecraft:oak_boat", - "tag": null + "id": "minecraft:oak_boat" }, "type": "minecraft:crafting_shaped" }, @@ -16125,8 +15964,7 @@ ], "result": { "count": 1, - "item": "minecraft:oak_button", - "tag": null + "id": "minecraft:oak_button" }, "type": "minecraft:crafting_shapeless" }, @@ -16143,8 +15981,7 @@ ], "result": { "count": 1, - "item": "minecraft:oak_chest_boat", - "tag": null + "id": "minecraft:oak_chest_boat" }, "type": "minecraft:crafting_shapeless" }, @@ -16165,8 +16002,7 @@ ], "result": { "count": 3, - "item": "minecraft:oak_door", - "tag": null + "id": "minecraft:oak_door" }, "type": "minecraft:crafting_shaped" }, @@ -16191,8 +16027,7 @@ ], "result": { "count": 3, - "item": "minecraft:oak_fence", - "tag": null + "id": "minecraft:oak_fence" }, "type": "minecraft:crafting_shaped" }, @@ -16217,8 +16052,7 @@ ], "result": { "count": 1, - "item": "minecraft:oak_fence_gate", - "tag": null + "id": "minecraft:oak_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -16244,8 +16078,7 @@ ], "result": { "count": 6, - "item": "minecraft:oak_hanging_sign", - "tag": null + "id": "minecraft:oak_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -16259,8 +16092,7 @@ ], "result": { "count": 4, - "item": "minecraft:oak_planks", - "tag": null + "id": "minecraft:oak_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -16279,8 +16111,7 @@ ], "result": { "count": 1, - "item": "minecraft:oak_pressure_plate", - "tag": null + "id": "minecraft:oak_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -16306,8 +16137,7 @@ ], "result": { "count": 3, - "item": "minecraft:oak_sign", - "tag": null + "id": "minecraft:oak_sign" }, "type": "minecraft:crafting_shaped" }, @@ -16326,8 +16156,7 @@ ], "result": { "count": 6, - "item": "minecraft:oak_slab", - "tag": null + "id": "minecraft:oak_slab" }, "type": "minecraft:crafting_shaped" }, @@ -16348,8 +16177,7 @@ ], "result": { "count": 4, - "item": "minecraft:oak_stairs", - "tag": null + "id": "minecraft:oak_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -16369,8 +16197,7 @@ ], "result": { "count": 2, - "item": "minecraft:oak_trapdoor", - "tag": null + "id": "minecraft:oak_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -16390,8 +16217,7 @@ ], "result": { "count": 3, - "item": "minecraft:oak_wood", - "tag": null + "id": "minecraft:oak_wood" }, "type": "minecraft:crafting_shaped" }, @@ -16421,8 +16247,7 @@ ], "result": { "count": 1, - "item": "minecraft:observer", - "tag": null + "id": "minecraft:observer" }, "type": "minecraft:crafting_shaped" }, @@ -16448,8 +16273,7 @@ ], "result": { "count": 1, - "item": "minecraft:orange_banner", - "tag": null + "id": "minecraft:orange_banner" }, "type": "minecraft:crafting_shaped" }, @@ -16473,8 +16297,7 @@ ], "result": { "count": 1, - "item": "minecraft:orange_bed", - "tag": null + "id": "minecraft:orange_bed" }, "type": "minecraft:crafting_shaped" }, @@ -16491,8 +16314,7 @@ ], "result": { "count": 1, - "item": "minecraft:orange_candle", - "tag": null + "id": "minecraft:orange_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -16511,8 +16333,7 @@ ], "result": { "count": 3, - "item": "minecraft:orange_carpet", - "tag": null + "id": "minecraft:orange_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -16550,8 +16371,7 @@ ], "result": { "count": 8, - "item": "minecraft:orange_concrete_powder", - "tag": null + "id": "minecraft:orange_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -16565,8 +16385,7 @@ ], "result": { "count": 1, - "item": "minecraft:orange_dye", - "tag": null + "id": "minecraft:orange_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -16583,8 +16402,7 @@ ], "result": { "count": 2, - "item": "minecraft:orange_dye", - "tag": null + "id": "minecraft:orange_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -16598,8 +16416,7 @@ ], "result": { "count": 1, - "item": "minecraft:orange_dye", - "tag": null + "id": "minecraft:orange_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -16612,7 +16429,9 @@ "item": "minecraft:orange_terracotta", "tag": null }, - "result": "minecraft:orange_glazed_terracotta", + "result": { + "id": "minecraft:orange_glazed_terracotta" + }, "type": "minecraft:smelting" }, "orange_stained_glass": { @@ -16637,8 +16456,7 @@ ], "result": { "count": 8, - "item": "minecraft:orange_stained_glass", - "tag": null + "id": "minecraft:orange_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -16658,8 +16476,7 @@ ], "result": { "count": 16, - "item": "minecraft:orange_stained_glass_pane", - "tag": null + "id": "minecraft:orange_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -16685,8 +16502,7 @@ ], "result": { "count": 8, - "item": "minecraft:orange_stained_glass_pane", - "tag": null + "id": "minecraft:orange_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -16712,8 +16528,7 @@ ], "result": { "count": 8, - "item": "minecraft:orange_terracotta", - "tag": null + "id": "minecraft:orange_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -16732,19 +16547,20 @@ ], "result": { "count": 4, - "item": "minecraft:oxidized_cut_copper", - "tag": null + "id": "minecraft:oxidized_cut_copper" }, "type": "minecraft:crafting_shaped" }, "oxidized_cut_copper_from_oxidized_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:oxidized_copper", "tag": null }, - "result": "minecraft:oxidized_cut_copper", + "result": { + "count": 4, + "id": "minecraft:oxidized_cut_copper" + }, "type": "minecraft:stonecutting" }, "oxidized_cut_copper_slab": { @@ -16761,29 +16577,32 @@ ], "result": { "count": 6, - "item": "minecraft:oxidized_cut_copper_slab", - "tag": null + "id": "minecraft:oxidized_cut_copper_slab" }, "type": "minecraft:crafting_shaped" }, "oxidized_cut_copper_slab_from_oxidized_copper_stonecutting": { - "count": 8, "ingredient": { "count": 1, "item": "minecraft:oxidized_copper", "tag": null }, - "result": "minecraft:oxidized_cut_copper_slab", + "result": { + "count": 8, + "id": "minecraft:oxidized_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:oxidized_cut_copper", "tag": null }, - "result": "minecraft:oxidized_cut_copper_slab", + "result": { + "count": 2, + "id": "minecraft:oxidized_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "oxidized_cut_copper_stairs": { @@ -16802,29 +16621,32 @@ ], "result": { "count": 4, - "item": "minecraft:oxidized_cut_copper_stairs", - "tag": null + "id": "minecraft:oxidized_cut_copper_stairs" }, "type": "minecraft:crafting_shaped" }, "oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:oxidized_copper", "tag": null }, - "result": "minecraft:oxidized_cut_copper_stairs", + "result": { + "count": 4, + "id": "minecraft:oxidized_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:oxidized_cut_copper", "tag": null }, - "result": "minecraft:oxidized_cut_copper_stairs", + "result": { + "count": 1, + "id": "minecraft:oxidized_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "packed_ice": { @@ -16860,8 +16682,7 @@ ], "result": { "count": 1, - "item": "minecraft:packed_ice", - "tag": null + "id": "minecraft:packed_ice" }, "type": "minecraft:crafting_shapeless" }, @@ -16877,8 +16698,7 @@ ], "result": { "count": 1, - "item": "minecraft:packed_mud", - "tag": null + "id": "minecraft:packed_mud" }, "type": "minecraft:crafting_shapeless" }, @@ -16902,8 +16722,7 @@ ], "result": { "count": 1, - "item": "minecraft:painting", - "tag": null + "id": "minecraft:painting" }, "type": "minecraft:crafting_shaped" }, @@ -16921,8 +16740,7 @@ ], "result": { "count": 3, - "item": "minecraft:paper", - "tag": null + "id": "minecraft:paper" }, "type": "minecraft:crafting_shaped" }, @@ -16948,8 +16766,7 @@ ], "result": { "count": 1, - "item": "minecraft:pink_banner", - "tag": null + "id": "minecraft:pink_banner" }, "type": "minecraft:crafting_shaped" }, @@ -16973,8 +16790,7 @@ ], "result": { "count": 1, - "item": "minecraft:pink_bed", - "tag": null + "id": "minecraft:pink_bed" }, "type": "minecraft:crafting_shaped" }, @@ -16991,8 +16807,7 @@ ], "result": { "count": 1, - "item": "minecraft:pink_candle", - "tag": null + "id": "minecraft:pink_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -17011,8 +16826,7 @@ ], "result": { "count": 3, - "item": "minecraft:pink_carpet", - "tag": null + "id": "minecraft:pink_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -17050,8 +16864,7 @@ ], "result": { "count": 8, - "item": "minecraft:pink_concrete_powder", - "tag": null + "id": "minecraft:pink_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -17065,8 +16878,7 @@ ], "result": { "count": 2, - "item": "minecraft:pink_dye", - "tag": null + "id": "minecraft:pink_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -17080,8 +16892,7 @@ ], "result": { "count": 1, - "item": "minecraft:pink_dye", - "tag": null + "id": "minecraft:pink_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -17095,8 +16906,7 @@ ], "result": { "count": 1, - "item": "minecraft:pink_dye", - "tag": null + "id": "minecraft:pink_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -17113,8 +16923,7 @@ ], "result": { "count": 2, - "item": "minecraft:pink_dye", - "tag": null + "id": "minecraft:pink_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -17127,7 +16936,9 @@ "item": "minecraft:pink_terracotta", "tag": null }, - "result": "minecraft:pink_glazed_terracotta", + "result": { + "id": "minecraft:pink_glazed_terracotta" + }, "type": "minecraft:smelting" }, "pink_stained_glass": { @@ -17152,8 +16963,7 @@ ], "result": { "count": 8, - "item": "minecraft:pink_stained_glass", - "tag": null + "id": "minecraft:pink_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -17173,8 +16983,7 @@ ], "result": { "count": 16, - "item": "minecraft:pink_stained_glass_pane", - "tag": null + "id": "minecraft:pink_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -17200,8 +17009,7 @@ ], "result": { "count": 8, - "item": "minecraft:pink_stained_glass_pane", - "tag": null + "id": "minecraft:pink_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -17227,8 +17035,7 @@ ], "result": { "count": 8, - "item": "minecraft:pink_terracotta", - "tag": null + "id": "minecraft:pink_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -17262,8 +17069,7 @@ ], "result": { "count": 1, - "item": "minecraft:piston", - "tag": null + "id": "minecraft:piston" }, "type": "minecraft:crafting_shaped" }, @@ -17282,19 +17088,20 @@ ], "result": { "count": 4, - "item": "minecraft:polished_andesite", - "tag": null + "id": "minecraft:polished_andesite" }, "type": "minecraft:crafting_shaped" }, "polished_andesite_from_andesite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:andesite", "tag": null }, - "result": "minecraft:polished_andesite", + "result": { + "count": 1, + "id": "minecraft:polished_andesite" + }, "type": "minecraft:stonecutting" }, "polished_andesite_slab": { @@ -17311,29 +17118,32 @@ ], "result": { "count": 6, - "item": "minecraft:polished_andesite_slab", - "tag": null + "id": "minecraft:polished_andesite_slab" }, "type": "minecraft:crafting_shaped" }, "polished_andesite_slab_from_andesite_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:andesite", "tag": null }, - "result": "minecraft:polished_andesite_slab", + "result": { + "count": 2, + "id": "minecraft:polished_andesite_slab" + }, "type": "minecraft:stonecutting" }, "polished_andesite_slab_from_polished_andesite_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:polished_andesite", "tag": null }, - "result": "minecraft:polished_andesite_slab", + "result": { + "count": 2, + "id": "minecraft:polished_andesite_slab" + }, "type": "minecraft:stonecutting" }, "polished_andesite_stairs": { @@ -17352,29 +17162,32 @@ ], "result": { "count": 4, - "item": "minecraft:polished_andesite_stairs", - "tag": null + "id": "minecraft:polished_andesite_stairs" }, "type": "minecraft:crafting_shaped" }, "polished_andesite_stairs_from_andesite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:andesite", "tag": null }, - "result": "minecraft:polished_andesite_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_andesite_stairs" + }, "type": "minecraft:stonecutting" }, "polished_andesite_stairs_from_polished_andesite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_andesite", "tag": null }, - "result": "minecraft:polished_andesite_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_andesite_stairs" + }, "type": "minecraft:stonecutting" }, "polished_basalt": { @@ -17392,19 +17205,20 @@ ], "result": { "count": 4, - "item": "minecraft:polished_basalt", - "tag": null + "id": "minecraft:polished_basalt" }, "type": "minecraft:crafting_shaped" }, "polished_basalt_from_basalt_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:basalt", "tag": null }, - "result": "minecraft:polished_basalt", + "result": { + "count": 1, + "id": "minecraft:polished_basalt" + }, "type": "minecraft:stonecutting" }, "polished_blackstone": { @@ -17422,8 +17236,7 @@ ], "result": { "count": 4, - "item": "minecraft:polished_blackstone", - "tag": null + "id": "minecraft:polished_blackstone" }, "type": "minecraft:crafting_shaped" }, @@ -17441,39 +17254,44 @@ ], "result": { "count": 6, - "item": "minecraft:polished_blackstone_brick_slab", - "tag": null + "id": "minecraft:polished_blackstone_brick_slab" }, "type": "minecraft:crafting_shaped" }, "polished_blackstone_brick_slab_from_blackstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_brick_slab", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_brick_slab" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone_bricks", "tag": null }, - "result": "minecraft:polished_blackstone_brick_slab", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_brick_slab" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_brick_slab_from_polished_blackstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_brick_slab", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_brick_slab" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_brick_stairs": { @@ -17492,39 +17310,44 @@ ], "result": { "count": 4, - "item": "minecraft:polished_blackstone_brick_stairs", - "tag": null + "id": "minecraft:polished_blackstone_brick_stairs" }, "type": "minecraft:crafting_shaped" }, "polished_blackstone_brick_stairs_from_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_brick_stairs" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone_bricks", "tag": null }, - "result": "minecraft:polished_blackstone_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_brick_stairs" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_brick_stairs" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_brick_wall": { @@ -17542,39 +17365,44 @@ ], "result": { "count": 6, - "item": "minecraft:polished_blackstone_brick_wall", - "tag": null + "id": "minecraft:polished_blackstone_brick_wall" }, "type": "minecraft:crafting_shaped" }, "polished_blackstone_brick_wall_from_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_brick_wall", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_brick_wall" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone_bricks", "tag": null }, - "result": "minecraft:polished_blackstone_brick_wall", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_brick_wall" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_brick_wall_from_polished_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_brick_wall", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_brick_wall" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_bricks": { @@ -17592,29 +17420,32 @@ ], "result": { "count": 4, - "item": "minecraft:polished_blackstone_bricks", - "tag": null + "id": "minecraft:polished_blackstone_bricks" }, "type": "minecraft:crafting_shaped" }, "polished_blackstone_bricks_from_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_bricks", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_bricks" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_bricks_from_polished_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_bricks", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_bricks" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_button": { @@ -17626,19 +17457,20 @@ ], "result": { "count": 1, - "item": "minecraft:polished_blackstone_button", - "tag": null + "id": "minecraft:polished_blackstone_button" }, "type": "minecraft:crafting_shapeless" }, "polished_blackstone_from_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:polished_blackstone", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_pressure_plate": { @@ -17655,8 +17487,7 @@ ], "result": { "count": 1, - "item": "minecraft:polished_blackstone_pressure_plate", - "tag": null + "id": "minecraft:polished_blackstone_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -17674,29 +17505,32 @@ ], "result": { "count": 6, - "item": "minecraft:polished_blackstone_slab", - "tag": null + "id": "minecraft:polished_blackstone_slab" }, "type": "minecraft:crafting_shaped" }, "polished_blackstone_slab_from_blackstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_slab", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_slab" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_slab_from_polished_blackstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_slab", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_slab" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_stairs": { @@ -17715,29 +17549,32 @@ ], "result": { "count": 4, - "item": "minecraft:polished_blackstone_stairs", - "tag": null + "id": "minecraft:polished_blackstone_stairs" }, "type": "minecraft:crafting_shaped" }, "polished_blackstone_stairs_from_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_stairs" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_stairs_from_polished_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_stairs" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_wall": { @@ -17755,29 +17592,32 @@ ], "result": { "count": 6, - "item": "minecraft:polished_blackstone_wall", - "tag": null + "id": "minecraft:polished_blackstone_wall" }, "type": "minecraft:crafting_shaped" }, "polished_blackstone_wall_from_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_wall", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_wall" + }, "type": "minecraft:stonecutting" }, "polished_blackstone_wall_from_polished_blackstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_blackstone", "tag": null }, - "result": "minecraft:polished_blackstone_wall", + "result": { + "count": 1, + "id": "minecraft:polished_blackstone_wall" + }, "type": "minecraft:stonecutting" }, "polished_deepslate": { @@ -17795,19 +17635,20 @@ ], "result": { "count": 4, - "item": "minecraft:polished_deepslate", - "tag": null + "id": "minecraft:polished_deepslate" }, "type": "minecraft:crafting_shaped" }, "polished_deepslate_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:polished_deepslate", + "result": { + "count": 1, + "id": "minecraft:polished_deepslate" + }, "type": "minecraft:stonecutting" }, "polished_deepslate_slab": { @@ -17824,29 +17665,32 @@ ], "result": { "count": 6, - "item": "minecraft:polished_deepslate_slab", - "tag": null + "id": "minecraft:polished_deepslate_slab" }, "type": "minecraft:crafting_shaped" }, "polished_deepslate_slab_from_cobbled_deepslate_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:polished_deepslate_slab", + "result": { + "count": 2, + "id": "minecraft:polished_deepslate_slab" + }, "type": "minecraft:stonecutting" }, "polished_deepslate_slab_from_polished_deepslate_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:polished_deepslate_slab", + "result": { + "count": 2, + "id": "minecraft:polished_deepslate_slab" + }, "type": "minecraft:stonecutting" }, "polished_deepslate_stairs": { @@ -17865,29 +17709,32 @@ ], "result": { "count": 4, - "item": "minecraft:polished_deepslate_stairs", - "tag": null + "id": "minecraft:polished_deepslate_stairs" }, "type": "minecraft:crafting_shaped" }, "polished_deepslate_stairs_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:polished_deepslate_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_deepslate_stairs" + }, "type": "minecraft:stonecutting" }, "polished_deepslate_stairs_from_polished_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:polished_deepslate_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_deepslate_stairs" + }, "type": "minecraft:stonecutting" }, "polished_deepslate_wall": { @@ -17905,29 +17752,32 @@ ], "result": { "count": 6, - "item": "minecraft:polished_deepslate_wall", - "tag": null + "id": "minecraft:polished_deepslate_wall" }, "type": "minecraft:crafting_shaped" }, "polished_deepslate_wall_from_cobbled_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:cobbled_deepslate", "tag": null }, - "result": "minecraft:polished_deepslate_wall", + "result": { + "count": 1, + "id": "minecraft:polished_deepslate_wall" + }, "type": "minecraft:stonecutting" }, "polished_deepslate_wall_from_polished_deepslate_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_deepslate", "tag": null }, - "result": "minecraft:polished_deepslate_wall", + "result": { + "count": 1, + "id": "minecraft:polished_deepslate_wall" + }, "type": "minecraft:stonecutting" }, "polished_diorite": { @@ -17945,19 +17795,20 @@ ], "result": { "count": 4, - "item": "minecraft:polished_diorite", - "tag": null + "id": "minecraft:polished_diorite" }, "type": "minecraft:crafting_shaped" }, "polished_diorite_from_diorite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:diorite", "tag": null }, - "result": "minecraft:polished_diorite", + "result": { + "count": 1, + "id": "minecraft:polished_diorite" + }, "type": "minecraft:stonecutting" }, "polished_diorite_slab": { @@ -17974,29 +17825,32 @@ ], "result": { "count": 6, - "item": "minecraft:polished_diorite_slab", - "tag": null + "id": "minecraft:polished_diorite_slab" }, "type": "minecraft:crafting_shaped" }, "polished_diorite_slab_from_diorite_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:diorite", "tag": null }, - "result": "minecraft:polished_diorite_slab", + "result": { + "count": 2, + "id": "minecraft:polished_diorite_slab" + }, "type": "minecraft:stonecutting" }, "polished_diorite_slab_from_polished_diorite_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:polished_diorite", "tag": null }, - "result": "minecraft:polished_diorite_slab", + "result": { + "count": 2, + "id": "minecraft:polished_diorite_slab" + }, "type": "minecraft:stonecutting" }, "polished_diorite_stairs": { @@ -18015,29 +17869,32 @@ ], "result": { "count": 4, - "item": "minecraft:polished_diorite_stairs", - "tag": null + "id": "minecraft:polished_diorite_stairs" }, "type": "minecraft:crafting_shaped" }, "polished_diorite_stairs_from_diorite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:diorite", "tag": null }, - "result": "minecraft:polished_diorite_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_diorite_stairs" + }, "type": "minecraft:stonecutting" }, "polished_diorite_stairs_from_polished_diorite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_diorite", "tag": null }, - "result": "minecraft:polished_diorite_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_diorite_stairs" + }, "type": "minecraft:stonecutting" }, "polished_granite": { @@ -18055,19 +17912,20 @@ ], "result": { "count": 4, - "item": "minecraft:polished_granite", - "tag": null + "id": "minecraft:polished_granite" }, "type": "minecraft:crafting_shaped" }, "polished_granite_from_granite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:granite", "tag": null }, - "result": "minecraft:polished_granite", + "result": { + "count": 1, + "id": "minecraft:polished_granite" + }, "type": "minecraft:stonecutting" }, "polished_granite_slab": { @@ -18084,29 +17942,32 @@ ], "result": { "count": 6, - "item": "minecraft:polished_granite_slab", - "tag": null + "id": "minecraft:polished_granite_slab" }, "type": "minecraft:crafting_shaped" }, "polished_granite_slab_from_granite_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:granite", "tag": null }, - "result": "minecraft:polished_granite_slab", + "result": { + "count": 2, + "id": "minecraft:polished_granite_slab" + }, "type": "minecraft:stonecutting" }, "polished_granite_slab_from_polished_granite_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:polished_granite", "tag": null }, - "result": "minecraft:polished_granite_slab", + "result": { + "count": 2, + "id": "minecraft:polished_granite_slab" + }, "type": "minecraft:stonecutting" }, "polished_granite_stairs": { @@ -18125,29 +17986,32 @@ ], "result": { "count": 4, - "item": "minecraft:polished_granite_stairs", - "tag": null + "id": "minecraft:polished_granite_stairs" }, "type": "minecraft:crafting_shaped" }, "polished_granite_stairs_from_granite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:granite", "tag": null }, - "result": "minecraft:polished_granite_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_granite_stairs" + }, "type": "minecraft:stonecutting" }, "polished_granite_stairs_from_polished_granite_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:polished_granite", "tag": null }, - "result": "minecraft:polished_granite_stairs", + "result": { + "count": 1, + "id": "minecraft:polished_granite_stairs" + }, "type": "minecraft:stonecutting" }, "popped_chorus_fruit": { @@ -18159,7 +18023,9 @@ "item": "minecraft:chorus_fruit", "tag": null }, - "result": "minecraft:popped_chorus_fruit", + "result": { + "id": "minecraft:popped_chorus_fruit" + }, "type": "minecraft:smelting" }, "powered_rail": { @@ -18188,8 +18054,7 @@ ], "result": { "count": 6, - "item": "minecraft:powered_rail", - "tag": null + "id": "minecraft:powered_rail" }, "type": "minecraft:crafting_shaped" }, @@ -18208,8 +18073,7 @@ ], "result": { "count": 1, - "item": "minecraft:prismarine", - "tag": null + "id": "minecraft:prismarine" }, "type": "minecraft:crafting_shaped" }, @@ -18227,19 +18091,20 @@ ], "result": { "count": 6, - "item": "minecraft:prismarine_brick_slab", - "tag": null + "id": "minecraft:prismarine_brick_slab" }, "type": "minecraft:crafting_shaped" }, "prismarine_brick_slab_from_prismarine_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:prismarine_bricks", "tag": null }, - "result": "minecraft:prismarine_brick_slab", + "result": { + "count": 2, + "id": "minecraft:prismarine_brick_slab" + }, "type": "minecraft:stonecutting" }, "prismarine_brick_stairs": { @@ -18258,19 +18123,20 @@ ], "result": { "count": 4, - "item": "minecraft:prismarine_brick_stairs", - "tag": null + "id": "minecraft:prismarine_brick_stairs" }, "type": "minecraft:crafting_shaped" }, "prismarine_brick_stairs_from_prismarine_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:prismarine_bricks", "tag": null }, - "result": "minecraft:prismarine_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:prismarine_brick_stairs" + }, "type": "minecraft:stonecutting" }, "prismarine_bricks": { @@ -18306,8 +18172,7 @@ ], "result": { "count": 1, - "item": "minecraft:prismarine_bricks", - "tag": null + "id": "minecraft:prismarine_bricks" }, "type": "minecraft:crafting_shapeless" }, @@ -18325,19 +18190,20 @@ ], "result": { "count": 6, - "item": "minecraft:prismarine_slab", - "tag": null + "id": "minecraft:prismarine_slab" }, "type": "minecraft:crafting_shaped" }, "prismarine_slab_from_prismarine_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:prismarine", "tag": null }, - "result": "minecraft:prismarine_slab", + "result": { + "count": 2, + "id": "minecraft:prismarine_slab" + }, "type": "minecraft:stonecutting" }, "prismarine_stairs": { @@ -18356,19 +18222,20 @@ ], "result": { "count": 4, - "item": "minecraft:prismarine_stairs", - "tag": null + "id": "minecraft:prismarine_stairs" }, "type": "minecraft:crafting_shaped" }, "prismarine_stairs_from_prismarine_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:prismarine", "tag": null }, - "result": "minecraft:prismarine_stairs", + "result": { + "count": 1, + "id": "minecraft:prismarine_stairs" + }, "type": "minecraft:stonecutting" }, "prismarine_wall": { @@ -18386,19 +18253,20 @@ ], "result": { "count": 6, - "item": "minecraft:prismarine_wall", - "tag": null + "id": "minecraft:prismarine_wall" }, "type": "minecraft:crafting_shaped" }, "prismarine_wall_from_prismarine_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:prismarine", "tag": null }, - "result": "minecraft:prismarine_wall", + "result": { + "count": 1, + "id": "minecraft:prismarine_wall" + }, "type": "minecraft:stonecutting" }, "pumpkin_pie": { @@ -18416,8 +18284,7 @@ ], "result": { "count": 1, - "item": "minecraft:pumpkin_pie", - "tag": null + "id": "minecraft:pumpkin_pie" }, "type": "minecraft:crafting_shapeless" }, @@ -18430,8 +18297,7 @@ ], "result": { "count": 4, - "item": "minecraft:pumpkin_seeds", - "tag": null + "id": "minecraft:pumpkin_seeds" }, "type": "minecraft:crafting_shapeless" }, @@ -18457,8 +18323,7 @@ ], "result": { "count": 1, - "item": "minecraft:purple_banner", - "tag": null + "id": "minecraft:purple_banner" }, "type": "minecraft:crafting_shaped" }, @@ -18482,8 +18347,7 @@ ], "result": { "count": 1, - "item": "minecraft:purple_bed", - "tag": null + "id": "minecraft:purple_bed" }, "type": "minecraft:crafting_shaped" }, @@ -18500,8 +18364,7 @@ ], "result": { "count": 1, - "item": "minecraft:purple_candle", - "tag": null + "id": "minecraft:purple_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -18520,8 +18383,7 @@ ], "result": { "count": 3, - "item": "minecraft:purple_carpet", - "tag": null + "id": "minecraft:purple_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -18559,8 +18421,7 @@ ], "result": { "count": 8, - "item": "minecraft:purple_concrete_powder", - "tag": null + "id": "minecraft:purple_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -18576,8 +18437,7 @@ ], "result": { "count": 2, - "item": "minecraft:purple_dye", - "tag": null + "id": "minecraft:purple_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -18590,7 +18450,9 @@ "item": "minecraft:purple_terracotta", "tag": null }, - "result": "minecraft:purple_glazed_terracotta", + "result": { + "id": "minecraft:purple_glazed_terracotta" + }, "type": "minecraft:smelting" }, "purple_stained_glass": { @@ -18615,8 +18477,7 @@ ], "result": { "count": 8, - "item": "minecraft:purple_stained_glass", - "tag": null + "id": "minecraft:purple_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -18636,8 +18497,7 @@ ], "result": { "count": 16, - "item": "minecraft:purple_stained_glass_pane", - "tag": null + "id": "minecraft:purple_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -18663,8 +18523,7 @@ ], "result": { "count": 8, - "item": "minecraft:purple_stained_glass_pane", - "tag": null + "id": "minecraft:purple_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -18690,8 +18549,7 @@ ], "result": { "count": 8, - "item": "minecraft:purple_terracotta", - "tag": null + "id": "minecraft:purple_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -18710,8 +18568,7 @@ ], "result": { "count": 4, - "item": "minecraft:purpur_block", - "tag": null + "id": "minecraft:purpur_block" }, "type": "minecraft:crafting_shaped" }, @@ -18730,19 +18587,20 @@ ], "result": { "count": 1, - "item": "minecraft:purpur_pillar", - "tag": null + "id": "minecraft:purpur_pillar" }, "type": "minecraft:crafting_shaped" }, "purpur_pillar_from_purpur_block_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:purpur_block", "tag": null }, - "result": "minecraft:purpur_pillar", + "result": { + "count": 1, + "id": "minecraft:purpur_pillar" + }, "type": "minecraft:stonecutting" }, "purpur_slab": { @@ -18766,19 +18624,20 @@ ], "result": { "count": 6, - "item": "minecraft:purpur_slab", - "tag": null + "id": "minecraft:purpur_slab" }, "type": "minecraft:crafting_shaped" }, "purpur_slab_from_purpur_block_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:purpur_block", "tag": null }, - "result": "minecraft:purpur_slab", + "result": { + "count": 2, + "id": "minecraft:purpur_slab" + }, "type": "minecraft:stonecutting" }, "purpur_stairs": { @@ -18804,19 +18663,20 @@ ], "result": { "count": 4, - "item": "minecraft:purpur_stairs", - "tag": null + "id": "minecraft:purpur_stairs" }, "type": "minecraft:crafting_shaped" }, "purpur_stairs_from_purpur_block_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:purpur_block", "tag": null }, - "result": "minecraft:purpur_stairs", + "result": { + "count": 1, + "id": "minecraft:purpur_stairs" + }, "type": "minecraft:stonecutting" }, "quartz": { @@ -18828,7 +18688,9 @@ "item": "minecraft:nether_quartz_ore", "tag": null }, - "result": "minecraft:quartz", + "result": { + "id": "minecraft:quartz" + }, "type": "minecraft:smelting" }, "quartz_block": { @@ -18846,8 +18708,7 @@ ], "result": { "count": 1, - "item": "minecraft:quartz_block", - "tag": null + "id": "minecraft:quartz_block" }, "type": "minecraft:crafting_shaped" }, @@ -18866,19 +18727,20 @@ ], "result": { "count": 4, - "item": "minecraft:quartz_bricks", - "tag": null + "id": "minecraft:quartz_bricks" }, "type": "minecraft:crafting_shaped" }, "quartz_bricks_from_quartz_block_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:quartz_block", "tag": null }, - "result": "minecraft:quartz_bricks", + "result": { + "count": 1, + "id": "minecraft:quartz_bricks" + }, "type": "minecraft:stonecutting" }, "quartz_from_blasting": { @@ -18890,7 +18752,9 @@ "item": "minecraft:nether_quartz_ore", "tag": null }, - "result": "minecraft:quartz", + "result": { + "id": "minecraft:quartz" + }, "type": "minecraft:blasting" }, "quartz_pillar": { @@ -18908,19 +18772,20 @@ ], "result": { "count": 2, - "item": "minecraft:quartz_pillar", - "tag": null + "id": "minecraft:quartz_pillar" }, "type": "minecraft:crafting_shaped" }, "quartz_pillar_from_quartz_block_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:quartz_block", "tag": null }, - "result": "minecraft:quartz_pillar", + "result": { + "count": 1, + "id": "minecraft:quartz_pillar" + }, "type": "minecraft:stonecutting" }, "quartz_slab": { @@ -18949,19 +18814,20 @@ ], "result": { "count": 6, - "item": "minecraft:quartz_slab", - "tag": null + "id": "minecraft:quartz_slab" }, "type": "minecraft:crafting_shaped" }, "quartz_slab_from_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:quartz_block", "tag": null }, - "result": "minecraft:quartz_slab", + "result": { + "count": 2, + "id": "minecraft:quartz_slab" + }, "type": "minecraft:stonecutting" }, "quartz_stairs": { @@ -18992,19 +18858,20 @@ ], "result": { "count": 4, - "item": "minecraft:quartz_stairs", - "tag": null + "id": "minecraft:quartz_stairs" }, "type": "minecraft:crafting_shaped" }, "quartz_stairs_from_quartz_block_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:quartz_block", "tag": null }, - "result": "minecraft:quartz_stairs", + "result": { + "count": 1, + "id": "minecraft:quartz_stairs" + }, "type": "minecraft:stonecutting" }, "rabbit_stew_from_brown_mushroom": { @@ -19029,8 +18896,7 @@ ], "result": { "count": 1, - "item": "minecraft:rabbit_stew", - "tag": null + "id": "minecraft:rabbit_stew" }, "type": "minecraft:crafting_shapeless" }, @@ -19056,8 +18922,7 @@ ], "result": { "count": 1, - "item": "minecraft:rabbit_stew", - "tag": null + "id": "minecraft:rabbit_stew" }, "type": "minecraft:crafting_shapeless" }, @@ -19082,8 +18947,7 @@ ], "result": { "count": 16, - "item": "minecraft:rail", - "tag": null + "id": "minecraft:rail" }, "type": "minecraft:crafting_shaped" }, @@ -19113,8 +18977,7 @@ ], "result": { "count": 2, - "item": "minecraft:raiser_armor_trim_smithing_template", - "tag": null + "id": "minecraft:raiser_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -19139,8 +19002,7 @@ ], "result": { "count": 9, - "item": "minecraft:raw_copper", - "tag": null + "id": "minecraft:raw_copper" }, "type": "minecraft:crafting_shapeless" }, @@ -19160,8 +19022,7 @@ ], "result": { "count": 1, - "item": "minecraft:raw_copper_block", - "tag": null + "id": "minecraft:raw_copper_block" }, "type": "minecraft:crafting_shaped" }, @@ -19174,8 +19035,7 @@ ], "result": { "count": 9, - "item": "minecraft:raw_gold", - "tag": null + "id": "minecraft:raw_gold" }, "type": "minecraft:crafting_shapeless" }, @@ -19195,8 +19055,7 @@ ], "result": { "count": 1, - "item": "minecraft:raw_gold_block", - "tag": null + "id": "minecraft:raw_gold_block" }, "type": "minecraft:crafting_shaped" }, @@ -19209,8 +19068,7 @@ ], "result": { "count": 9, - "item": "minecraft:raw_iron", - "tag": null + "id": "minecraft:raw_iron" }, "type": "minecraft:crafting_shapeless" }, @@ -19230,8 +19088,7 @@ ], "result": { "count": 1, - "item": "minecraft:raw_iron_block", - "tag": null + "id": "minecraft:raw_iron_block" }, "type": "minecraft:crafting_shaped" }, @@ -19256,8 +19113,7 @@ ], "result": { "count": 1, - "item": "minecraft:recovery_compass", - "tag": null + "id": "minecraft:recovery_compass" }, "type": "minecraft:crafting_shaped" }, @@ -19283,8 +19139,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_banner", - "tag": null + "id": "minecraft:red_banner" }, "type": "minecraft:crafting_shaped" }, @@ -19308,8 +19163,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_bed", - "tag": null + "id": "minecraft:red_bed" }, "type": "minecraft:crafting_shaped" }, @@ -19326,8 +19180,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_candle", - "tag": null + "id": "minecraft:red_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -19346,8 +19199,7 @@ ], "result": { "count": 3, - "item": "minecraft:red_carpet", - "tag": null + "id": "minecraft:red_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -19385,8 +19237,7 @@ ], "result": { "count": 8, - "item": "minecraft:red_concrete_powder", - "tag": null + "id": "minecraft:red_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -19400,8 +19251,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_dye", - "tag": null + "id": "minecraft:red_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -19415,8 +19265,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_dye", - "tag": null + "id": "minecraft:red_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -19430,8 +19279,7 @@ ], "result": { "count": 2, - "item": "minecraft:red_dye", - "tag": null + "id": "minecraft:red_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -19445,8 +19293,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_dye", - "tag": null + "id": "minecraft:red_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -19459,7 +19306,9 @@ "item": "minecraft:red_terracotta", "tag": null }, - "result": "minecraft:red_glazed_terracotta", + "result": { + "id": "minecraft:red_glazed_terracotta" + }, "type": "minecraft:smelting" }, "red_nether_brick_slab": { @@ -19476,19 +19325,20 @@ ], "result": { "count": 6, - "item": "minecraft:red_nether_brick_slab", - "tag": null + "id": "minecraft:red_nether_brick_slab" }, "type": "minecraft:crafting_shaped" }, "red_nether_brick_slab_from_red_nether_bricks_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:red_nether_bricks", "tag": null }, - "result": "minecraft:red_nether_brick_slab", + "result": { + "count": 2, + "id": "minecraft:red_nether_brick_slab" + }, "type": "minecraft:stonecutting" }, "red_nether_brick_stairs": { @@ -19507,19 +19357,20 @@ ], "result": { "count": 4, - "item": "minecraft:red_nether_brick_stairs", - "tag": null + "id": "minecraft:red_nether_brick_stairs" }, "type": "minecraft:crafting_shaped" }, "red_nether_brick_stairs_from_red_nether_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:red_nether_bricks", "tag": null }, - "result": "minecraft:red_nether_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:red_nether_brick_stairs" + }, "type": "minecraft:stonecutting" }, "red_nether_brick_wall": { @@ -19537,19 +19388,20 @@ ], "result": { "count": 6, - "item": "minecraft:red_nether_brick_wall", - "tag": null + "id": "minecraft:red_nether_brick_wall" }, "type": "minecraft:crafting_shaped" }, "red_nether_brick_wall_from_red_nether_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:red_nether_bricks", "tag": null }, - "result": "minecraft:red_nether_brick_wall", + "result": { + "count": 1, + "id": "minecraft:red_nether_brick_wall" + }, "type": "minecraft:stonecutting" }, "red_nether_bricks": { @@ -19572,8 +19424,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_nether_bricks", - "tag": null + "id": "minecraft:red_nether_bricks" }, "type": "minecraft:crafting_shaped" }, @@ -19592,8 +19443,7 @@ ], "result": { "count": 1, - "item": "minecraft:red_sandstone", - "tag": null + "id": "minecraft:red_sandstone" }, "type": "minecraft:crafting_shaped" }, @@ -19618,19 +19468,20 @@ ], "result": { "count": 6, - "item": "minecraft:red_sandstone_slab", - "tag": null + "id": "minecraft:red_sandstone_slab" }, "type": "minecraft:crafting_shaped" }, "red_sandstone_slab_from_red_sandstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:red_sandstone", "tag": null }, - "result": "minecraft:red_sandstone_slab", + "result": { + "count": 2, + "id": "minecraft:red_sandstone_slab" + }, "type": "minecraft:stonecutting" }, "red_sandstone_stairs": { @@ -19661,19 +19512,20 @@ ], "result": { "count": 4, - "item": "minecraft:red_sandstone_stairs", - "tag": null + "id": "minecraft:red_sandstone_stairs" }, "type": "minecraft:crafting_shaped" }, "red_sandstone_stairs_from_red_sandstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:red_sandstone", "tag": null }, - "result": "minecraft:red_sandstone_stairs", + "result": { + "count": 1, + "id": "minecraft:red_sandstone_stairs" + }, "type": "minecraft:stonecutting" }, "red_sandstone_wall": { @@ -19691,19 +19543,20 @@ ], "result": { "count": 6, - "item": "minecraft:red_sandstone_wall", - "tag": null + "id": "minecraft:red_sandstone_wall" }, "type": "minecraft:crafting_shaped" }, "red_sandstone_wall_from_red_sandstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:red_sandstone", "tag": null }, - "result": "minecraft:red_sandstone_wall", + "result": { + "count": 1, + "id": "minecraft:red_sandstone_wall" + }, "type": "minecraft:stonecutting" }, "red_stained_glass": { @@ -19728,8 +19581,7 @@ ], "result": { "count": 8, - "item": "minecraft:red_stained_glass", - "tag": null + "id": "minecraft:red_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -19749,8 +19601,7 @@ ], "result": { "count": 16, - "item": "minecraft:red_stained_glass_pane", - "tag": null + "id": "minecraft:red_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -19776,8 +19627,7 @@ ], "result": { "count": 8, - "item": "minecraft:red_stained_glass_pane", - "tag": null + "id": "minecraft:red_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -19803,8 +19653,7 @@ ], "result": { "count": 8, - "item": "minecraft:red_terracotta", - "tag": null + "id": "minecraft:red_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -19817,8 +19666,7 @@ ], "result": { "count": 9, - "item": "minecraft:redstone", - "tag": null + "id": "minecraft:redstone" }, "type": "minecraft:crafting_shapeless" }, @@ -19838,8 +19686,7 @@ ], "result": { "count": 1, - "item": "minecraft:redstone_block", - "tag": null + "id": "minecraft:redstone_block" }, "type": "minecraft:crafting_shaped" }, @@ -19853,7 +19700,9 @@ "item": "minecraft:deepslate_redstone_ore", "tag": null }, - "result": "minecraft:redstone", + "result": { + "id": "minecraft:redstone" + }, "type": "minecraft:blasting" }, "redstone_from_blasting_redstone_ore": { @@ -19866,7 +19715,9 @@ "item": "minecraft:redstone_ore", "tag": null }, - "result": "minecraft:redstone", + "result": { + "id": "minecraft:redstone" + }, "type": "minecraft:blasting" }, "redstone_from_smelting_deepslate_redstone_ore": { @@ -19879,7 +19730,9 @@ "item": "minecraft:deepslate_redstone_ore", "tag": null }, - "result": "minecraft:redstone", + "result": { + "id": "minecraft:redstone" + }, "type": "minecraft:smelting" }, "redstone_from_smelting_redstone_ore": { @@ -19892,7 +19745,9 @@ "item": "minecraft:redstone_ore", "tag": null }, - "result": "minecraft:redstone", + "result": { + "id": "minecraft:redstone" + }, "type": "minecraft:smelting" }, "redstone_lamp": { @@ -19916,8 +19771,7 @@ ], "result": { "count": 1, - "item": "minecraft:redstone_lamp", - "tag": null + "id": "minecraft:redstone_lamp" }, "type": "minecraft:crafting_shaped" }, @@ -19941,8 +19795,7 @@ ], "result": { "count": 1, - "item": "minecraft:redstone_torch", - "tag": null + "id": "minecraft:redstone_torch" }, "type": "minecraft:crafting_shaped" }, @@ -19975,8 +19828,7 @@ ], "result": { "count": 1, - "item": "minecraft:repeater", - "tag": null + "id": "minecraft:repeater" }, "type": "minecraft:crafting_shaped" }, @@ -20001,8 +19853,7 @@ ], "result": { "count": 1, - "item": "minecraft:respawn_anchor", - "tag": null + "id": "minecraft:respawn_anchor" }, "type": "minecraft:crafting_shaped" }, @@ -20032,8 +19883,7 @@ ], "result": { "count": 2, - "item": "minecraft:rib_armor_trim_smithing_template", - "tag": null + "id": "minecraft:rib_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -20064,8 +19914,7 @@ ], "result": { "count": 1, - "item": "minecraft:sandstone", - "tag": null + "id": "minecraft:sandstone" }, "type": "minecraft:crafting_shaped" }, @@ -20090,19 +19939,20 @@ ], "result": { "count": 6, - "item": "minecraft:sandstone_slab", - "tag": null + "id": "minecraft:sandstone_slab" }, "type": "minecraft:crafting_shaped" }, "sandstone_slab_from_sandstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:sandstone", "tag": null }, - "result": "minecraft:sandstone_slab", + "result": { + "count": 2, + "id": "minecraft:sandstone_slab" + }, "type": "minecraft:stonecutting" }, "sandstone_stairs": { @@ -20133,19 +19983,20 @@ ], "result": { "count": 4, - "item": "minecraft:sandstone_stairs", - "tag": null + "id": "minecraft:sandstone_stairs" }, "type": "minecraft:crafting_shaped" }, "sandstone_stairs_from_sandstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:sandstone", "tag": null }, - "result": "minecraft:sandstone_stairs", + "result": { + "count": 1, + "id": "minecraft:sandstone_stairs" + }, "type": "minecraft:stonecutting" }, "sandstone_wall": { @@ -20163,19 +20014,20 @@ ], "result": { "count": 6, - "item": "minecraft:sandstone_wall", - "tag": null + "id": "minecraft:sandstone_wall" }, "type": "minecraft:crafting_shaped" }, "sandstone_wall_from_sandstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:sandstone", "tag": null }, - "result": "minecraft:sandstone_wall", + "result": { + "count": 1, + "id": "minecraft:sandstone_wall" + }, "type": "minecraft:stonecutting" }, "scaffolding": { @@ -20199,8 +20051,7 @@ ], "result": { "count": 6, - "item": "minecraft:scaffolding", - "tag": null + "id": "minecraft:scaffolding" }, "type": "minecraft:crafting_shaped" }, @@ -20225,8 +20076,7 @@ ], "result": { "count": 1, - "item": "minecraft:sea_lantern", - "tag": null + "id": "minecraft:sea_lantern" }, "type": "minecraft:crafting_shaped" }, @@ -20256,8 +20106,7 @@ ], "result": { "count": 2, - "item": "minecraft:sentry_armor_trim_smithing_template", - "tag": null + "id": "minecraft:sentry_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -20299,8 +20148,7 @@ ], "result": { "count": 2, - "item": "minecraft:shaper_armor_trim_smithing_template", - "tag": null + "id": "minecraft:shaper_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -20331,8 +20179,7 @@ ], "result": { "count": 1, - "item": "minecraft:shears", - "tag": null + "id": "minecraft:shears" }, "type": "minecraft:crafting_shaped" }, @@ -20356,8 +20203,7 @@ ], "result": { "count": 1, - "item": "minecraft:shield", - "tag": null + "id": "minecraft:shield" }, "type": "minecraft:crafting_shaped" }, @@ -20386,8 +20232,7 @@ ], "result": { "count": 1, - "item": "minecraft:shulker_box", - "tag": null + "id": "minecraft:shulker_box" }, "type": "minecraft:crafting_shaped" }, @@ -20421,8 +20266,7 @@ ], "result": { "count": 2, - "item": "minecraft:silence_armor_trim_smithing_template", - "tag": null + "id": "minecraft:silence_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -20450,8 +20294,7 @@ ], "result": { "count": 1, - "item": "minecraft:skull_banner_pattern", - "tag": null + "id": "minecraft:skull_banner_pattern" }, "type": "minecraft:crafting_shapeless" }, @@ -20464,8 +20307,7 @@ ], "result": { "count": 9, - "item": "minecraft:slime_ball", - "tag": null + "id": "minecraft:slime_ball" }, "type": "minecraft:crafting_shapeless" }, @@ -20485,8 +20327,7 @@ ], "result": { "count": 1, - "item": "minecraft:slime_block", - "tag": null + "id": "minecraft:slime_block" }, "type": "minecraft:crafting_shaped" }, @@ -20510,8 +20351,7 @@ ], "result": { "count": 1, - "item": "minecraft:smithing_table", - "tag": null + "id": "minecraft:smithing_table" }, "type": "minecraft:crafting_shaped" }, @@ -20535,8 +20375,7 @@ ], "result": { "count": 1, - "item": "minecraft:smoker", - "tag": null + "id": "minecraft:smoker" }, "type": "minecraft:crafting_shaped" }, @@ -20549,7 +20388,9 @@ "item": "minecraft:basalt", "tag": null }, - "result": "minecraft:smooth_basalt", + "result": { + "id": "minecraft:smooth_basalt" + }, "type": "minecraft:smelting" }, "smooth_quartz": { @@ -20561,7 +20402,9 @@ "item": "minecraft:quartz_block", "tag": null }, - "result": "minecraft:smooth_quartz", + "result": { + "id": "minecraft:smooth_quartz" + }, "type": "minecraft:smelting" }, "smooth_quartz_slab": { @@ -20578,19 +20421,20 @@ ], "result": { "count": 6, - "item": "minecraft:smooth_quartz_slab", - "tag": null + "id": "minecraft:smooth_quartz_slab" }, "type": "minecraft:crafting_shaped" }, "smooth_quartz_slab_from_smooth_quartz_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:smooth_quartz", "tag": null }, - "result": "minecraft:smooth_quartz_slab", + "result": { + "count": 2, + "id": "minecraft:smooth_quartz_slab" + }, "type": "minecraft:stonecutting" }, "smooth_quartz_stairs": { @@ -20609,19 +20453,20 @@ ], "result": { "count": 4, - "item": "minecraft:smooth_quartz_stairs", - "tag": null + "id": "minecraft:smooth_quartz_stairs" }, "type": "minecraft:crafting_shaped" }, "smooth_quartz_stairs_from_smooth_quartz_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:smooth_quartz", "tag": null }, - "result": "minecraft:smooth_quartz_stairs", + "result": { + "count": 1, + "id": "minecraft:smooth_quartz_stairs" + }, "type": "minecraft:stonecutting" }, "smooth_red_sandstone": { @@ -20633,7 +20478,9 @@ "item": "minecraft:red_sandstone", "tag": null }, - "result": "minecraft:smooth_red_sandstone", + "result": { + "id": "minecraft:smooth_red_sandstone" + }, "type": "minecraft:smelting" }, "smooth_red_sandstone_slab": { @@ -20650,19 +20497,20 @@ ], "result": { "count": 6, - "item": "minecraft:smooth_red_sandstone_slab", - "tag": null + "id": "minecraft:smooth_red_sandstone_slab" }, "type": "minecraft:crafting_shaped" }, "smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:smooth_red_sandstone", "tag": null }, - "result": "minecraft:smooth_red_sandstone_slab", + "result": { + "count": 2, + "id": "minecraft:smooth_red_sandstone_slab" + }, "type": "minecraft:stonecutting" }, "smooth_red_sandstone_stairs": { @@ -20681,19 +20529,20 @@ ], "result": { "count": 4, - "item": "minecraft:smooth_red_sandstone_stairs", - "tag": null + "id": "minecraft:smooth_red_sandstone_stairs" }, "type": "minecraft:crafting_shaped" }, "smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:smooth_red_sandstone", "tag": null }, - "result": "minecraft:smooth_red_sandstone_stairs", + "result": { + "count": 1, + "id": "minecraft:smooth_red_sandstone_stairs" + }, "type": "minecraft:stonecutting" }, "smooth_sandstone": { @@ -20705,7 +20554,9 @@ "item": "minecraft:sandstone", "tag": null }, - "result": "minecraft:smooth_sandstone", + "result": { + "id": "minecraft:smooth_sandstone" + }, "type": "minecraft:smelting" }, "smooth_sandstone_slab": { @@ -20722,19 +20573,20 @@ ], "result": { "count": 6, - "item": "minecraft:smooth_sandstone_slab", - "tag": null + "id": "minecraft:smooth_sandstone_slab" }, "type": "minecraft:crafting_shaped" }, "smooth_sandstone_slab_from_smooth_sandstone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:smooth_sandstone", "tag": null }, - "result": "minecraft:smooth_sandstone_slab", + "result": { + "count": 2, + "id": "minecraft:smooth_sandstone_slab" + }, "type": "minecraft:stonecutting" }, "smooth_sandstone_stairs": { @@ -20753,19 +20605,20 @@ ], "result": { "count": 4, - "item": "minecraft:smooth_sandstone_stairs", - "tag": null + "id": "minecraft:smooth_sandstone_stairs" }, "type": "minecraft:crafting_shaped" }, "smooth_sandstone_stairs_from_smooth_sandstone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:smooth_sandstone", "tag": null }, - "result": "minecraft:smooth_sandstone_stairs", + "result": { + "count": 1, + "id": "minecraft:smooth_sandstone_stairs" + }, "type": "minecraft:stonecutting" }, "smooth_stone": { @@ -20777,7 +20630,9 @@ "item": "minecraft:stone", "tag": null }, - "result": "minecraft:smooth_stone", + "result": { + "id": "minecraft:smooth_stone" + }, "type": "minecraft:smelting" }, "smooth_stone_slab": { @@ -20794,19 +20649,20 @@ ], "result": { "count": 6, - "item": "minecraft:smooth_stone_slab", - "tag": null + "id": "minecraft:smooth_stone_slab" }, "type": "minecraft:crafting_shaped" }, "smooth_stone_slab_from_smooth_stone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:smooth_stone", "tag": null }, - "result": "minecraft:smooth_stone_slab", + "result": { + "count": 2, + "id": "minecraft:smooth_stone_slab" + }, "type": "minecraft:stonecutting" }, "snout_armor_trim_smithing_template": { @@ -20835,8 +20691,7 @@ ], "result": { "count": 2, - "item": "minecraft:snout_armor_trim_smithing_template", - "tag": null + "id": "minecraft:snout_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -20866,8 +20721,7 @@ ], "result": { "count": 6, - "item": "minecraft:snow", - "tag": null + "id": "minecraft:snow" }, "type": "minecraft:crafting_shaped" }, @@ -20886,8 +20740,7 @@ ], "result": { "count": 1, - "item": "minecraft:snow_block", - "tag": null + "id": "minecraft:snow_block" }, "type": "minecraft:crafting_shaped" }, @@ -20915,8 +20768,7 @@ ], "result": { "count": 1, - "item": "minecraft:soul_campfire", - "tag": null + "id": "minecraft:soul_campfire" }, "type": "minecraft:crafting_shaped" }, @@ -20941,8 +20793,7 @@ ], "result": { "count": 1, - "item": "minecraft:soul_lantern", - "tag": null + "id": "minecraft:soul_lantern" }, "type": "minecraft:crafting_shaped" }, @@ -20978,8 +20829,7 @@ ], "result": { "count": 4, - "item": "minecraft:soul_torch", - "tag": null + "id": "minecraft:soul_torch" }, "type": "minecraft:crafting_shaped" }, @@ -21004,8 +20854,7 @@ ], "result": { "count": 2, - "item": "minecraft:spectral_arrow", - "tag": null + "id": "minecraft:spectral_arrow" }, "type": "minecraft:crafting_shaped" }, @@ -21035,8 +20884,7 @@ ], "result": { "count": 2, - "item": "minecraft:spire_armor_trim_smithing_template", - "tag": null + "id": "minecraft:spire_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -21061,7 +20909,9 @@ "item": "minecraft:wet_sponge", "tag": null }, - "result": "minecraft:sponge", + "result": { + "id": "minecraft:sponge" + }, "type": "minecraft:smelting" }, "spruce_boat": { @@ -21080,8 +20930,7 @@ ], "result": { "count": 1, - "item": "minecraft:spruce_boat", - "tag": null + "id": "minecraft:spruce_boat" }, "type": "minecraft:crafting_shaped" }, @@ -21095,8 +20944,7 @@ ], "result": { "count": 1, - "item": "minecraft:spruce_button", - "tag": null + "id": "minecraft:spruce_button" }, "type": "minecraft:crafting_shapeless" }, @@ -21113,8 +20961,7 @@ ], "result": { "count": 1, - "item": "minecraft:spruce_chest_boat", - "tag": null + "id": "minecraft:spruce_chest_boat" }, "type": "minecraft:crafting_shapeless" }, @@ -21135,8 +20982,7 @@ ], "result": { "count": 3, - "item": "minecraft:spruce_door", - "tag": null + "id": "minecraft:spruce_door" }, "type": "minecraft:crafting_shaped" }, @@ -21161,8 +21007,7 @@ ], "result": { "count": 3, - "item": "minecraft:spruce_fence", - "tag": null + "id": "minecraft:spruce_fence" }, "type": "minecraft:crafting_shaped" }, @@ -21187,8 +21032,7 @@ ], "result": { "count": 1, - "item": "minecraft:spruce_fence_gate", - "tag": null + "id": "minecraft:spruce_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -21214,8 +21058,7 @@ ], "result": { "count": 6, - "item": "minecraft:spruce_hanging_sign", - "tag": null + "id": "minecraft:spruce_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -21229,8 +21072,7 @@ ], "result": { "count": 4, - "item": "minecraft:spruce_planks", - "tag": null + "id": "minecraft:spruce_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -21249,8 +21091,7 @@ ], "result": { "count": 1, - "item": "minecraft:spruce_pressure_plate", - "tag": null + "id": "minecraft:spruce_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -21276,8 +21117,7 @@ ], "result": { "count": 3, - "item": "minecraft:spruce_sign", - "tag": null + "id": "minecraft:spruce_sign" }, "type": "minecraft:crafting_shaped" }, @@ -21296,8 +21136,7 @@ ], "result": { "count": 6, - "item": "minecraft:spruce_slab", - "tag": null + "id": "minecraft:spruce_slab" }, "type": "minecraft:crafting_shaped" }, @@ -21318,8 +21157,7 @@ ], "result": { "count": 4, - "item": "minecraft:spruce_stairs", - "tag": null + "id": "minecraft:spruce_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -21339,8 +21177,7 @@ ], "result": { "count": 2, - "item": "minecraft:spruce_trapdoor", - "tag": null + "id": "minecraft:spruce_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -21360,8 +21197,7 @@ ], "result": { "count": 3, - "item": "minecraft:spruce_wood", - "tag": null + "id": "minecraft:spruce_wood" }, "type": "minecraft:crafting_shaped" }, @@ -21386,8 +21222,7 @@ ], "result": { "count": 1, - "item": "minecraft:spyglass", - "tag": null + "id": "minecraft:spyglass" }, "type": "minecraft:crafting_shaped" }, @@ -21406,8 +21241,7 @@ ], "result": { "count": 4, - "item": "minecraft:stick", - "tag": null + "id": "minecraft:stick" }, "type": "minecraft:crafting_shaped" }, @@ -21427,8 +21261,7 @@ ], "result": { "count": 1, - "item": "minecraft:stick", - "tag": null + "id": "minecraft:stick" }, "type": "minecraft:crafting_shaped" }, @@ -21452,8 +21285,7 @@ ], "result": { "count": 1, - "item": "minecraft:sticky_piston", - "tag": null + "id": "minecraft:sticky_piston" }, "type": "minecraft:crafting_shaped" }, @@ -21466,7 +21298,9 @@ "item": "minecraft:cobblestone", "tag": null }, - "result": "minecraft:stone", + "result": { + "id": "minecraft:stone" + }, "type": "minecraft:smelting" }, "stone_axe": { @@ -21489,8 +21323,7 @@ ], "result": { "count": 1, - "item": "minecraft:stone_axe", - "tag": null + "id": "minecraft:stone_axe" }, "type": "minecraft:crafting_shaped" }, @@ -21508,29 +21341,32 @@ ], "result": { "count": 6, - "item": "minecraft:stone_brick_slab", - "tag": null + "id": "minecraft:stone_brick_slab" }, "type": "minecraft:crafting_shaped" }, "stone_brick_slab_from_stone_bricks_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:stone_bricks", "tag": null }, - "result": "minecraft:stone_brick_slab", + "result": { + "count": 2, + "id": "minecraft:stone_brick_slab" + }, "type": "minecraft:stonecutting" }, "stone_brick_slab_from_stone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:stone", "tag": null }, - "result": "minecraft:stone_brick_slab", + "result": { + "count": 2, + "id": "minecraft:stone_brick_slab" + }, "type": "minecraft:stonecutting" }, "stone_brick_stairs": { @@ -21549,29 +21385,32 @@ ], "result": { "count": 4, - "item": "minecraft:stone_brick_stairs", - "tag": null + "id": "minecraft:stone_brick_stairs" }, "type": "minecraft:crafting_shaped" }, "stone_brick_stairs_from_stone_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:stone_bricks", "tag": null }, - "result": "minecraft:stone_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:stone_brick_stairs" + }, "type": "minecraft:stonecutting" }, "stone_brick_stairs_from_stone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:stone", "tag": null }, - "result": "minecraft:stone_brick_stairs", + "result": { + "count": 1, + "id": "minecraft:stone_brick_stairs" + }, "type": "minecraft:stonecutting" }, "stone_brick_wall": { @@ -21589,29 +21428,32 @@ ], "result": { "count": 6, - "item": "minecraft:stone_brick_wall", - "tag": null + "id": "minecraft:stone_brick_wall" }, "type": "minecraft:crafting_shaped" }, "stone_brick_wall_from_stone_bricks_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:stone_bricks", "tag": null }, - "result": "minecraft:stone_brick_wall", + "result": { + "count": 1, + "id": "minecraft:stone_brick_wall" + }, "type": "minecraft:stonecutting" }, "stone_brick_walls_from_stone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:stone", "tag": null }, - "result": "minecraft:stone_brick_wall", + "result": { + "count": 1, + "id": "minecraft:stone_brick_wall" + }, "type": "minecraft:stonecutting" }, "stone_bricks": { @@ -21629,19 +21471,20 @@ ], "result": { "count": 4, - "item": "minecraft:stone_bricks", - "tag": null + "id": "minecraft:stone_bricks" }, "type": "minecraft:crafting_shaped" }, "stone_bricks_from_stone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:stone", "tag": null }, - "result": "minecraft:stone_bricks", + "result": { + "count": 1, + "id": "minecraft:stone_bricks" + }, "type": "minecraft:stonecutting" }, "stone_button": { @@ -21653,8 +21496,7 @@ ], "result": { "count": 1, - "item": "minecraft:stone_button", - "tag": null + "id": "minecraft:stone_button" }, "type": "minecraft:crafting_shapeless" }, @@ -21678,8 +21520,7 @@ ], "result": { "count": 1, - "item": "minecraft:stone_hoe", - "tag": null + "id": "minecraft:stone_hoe" }, "type": "minecraft:crafting_shaped" }, @@ -21703,8 +21544,7 @@ ], "result": { "count": 1, - "item": "minecraft:stone_pickaxe", - "tag": null + "id": "minecraft:stone_pickaxe" }, "type": "minecraft:crafting_shaped" }, @@ -21722,8 +21562,7 @@ ], "result": { "count": 1, - "item": "minecraft:stone_pressure_plate", - "tag": null + "id": "minecraft:stone_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -21747,8 +21586,7 @@ ], "result": { "count": 1, - "item": "minecraft:stone_shovel", - "tag": null + "id": "minecraft:stone_shovel" }, "type": "minecraft:crafting_shaped" }, @@ -21766,19 +21604,20 @@ ], "result": { "count": 6, - "item": "minecraft:stone_slab", - "tag": null + "id": "minecraft:stone_slab" }, "type": "minecraft:crafting_shaped" }, "stone_slab_from_stone_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:stone", "tag": null }, - "result": "minecraft:stone_slab", + "result": { + "count": 2, + "id": "minecraft:stone_slab" + }, "type": "minecraft:stonecutting" }, "stone_stairs": { @@ -21797,19 +21636,20 @@ ], "result": { "count": 4, - "item": "minecraft:stone_stairs", - "tag": null + "id": "minecraft:stone_stairs" }, "type": "minecraft:crafting_shaped" }, "stone_stairs_from_stone_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:stone", "tag": null }, - "result": "minecraft:stone_stairs", + "result": { + "count": 1, + "id": "minecraft:stone_stairs" + }, "type": "minecraft:stonecutting" }, "stone_sword": { @@ -21832,8 +21672,7 @@ ], "result": { "count": 1, - "item": "minecraft:stone_sword", - "tag": null + "id": "minecraft:stone_sword" }, "type": "minecraft:crafting_shaped" }, @@ -21857,8 +21696,7 @@ ], "result": { "count": 1, - "item": "minecraft:stonecutter", - "tag": null + "id": "minecraft:stonecutter" }, "type": "minecraft:crafting_shaped" }, @@ -21878,8 +21716,7 @@ ], "result": { "count": 3, - "item": "minecraft:stripped_acacia_wood", - "tag": null + "id": "minecraft:stripped_acacia_wood" }, "type": "minecraft:crafting_shaped" }, @@ -21899,8 +21736,7 @@ ], "result": { "count": 3, - "item": "minecraft:stripped_birch_wood", - "tag": null + "id": "minecraft:stripped_birch_wood" }, "type": "minecraft:crafting_shaped" }, @@ -21920,8 +21756,7 @@ ], "result": { "count": 3, - "item": "minecraft:stripped_cherry_wood", - "tag": null + "id": "minecraft:stripped_cherry_wood" }, "type": "minecraft:crafting_shaped" }, @@ -21941,8 +21776,7 @@ ], "result": { "count": 3, - "item": "minecraft:stripped_crimson_hyphae", - "tag": null + "id": "minecraft:stripped_crimson_hyphae" }, "type": "minecraft:crafting_shaped" }, @@ -21962,8 +21796,7 @@ ], "result": { "count": 3, - "item": "minecraft:stripped_dark_oak_wood", - "tag": null + "id": "minecraft:stripped_dark_oak_wood" }, "type": "minecraft:crafting_shaped" }, @@ -21983,8 +21816,7 @@ ], "result": { "count": 3, - "item": "minecraft:stripped_jungle_wood", - "tag": null + "id": "minecraft:stripped_jungle_wood" }, "type": "minecraft:crafting_shaped" }, @@ -22004,8 +21836,7 @@ ], "result": { "count": 3, - "item": "minecraft:stripped_mangrove_wood", - "tag": null + "id": "minecraft:stripped_mangrove_wood" }, "type": "minecraft:crafting_shaped" }, @@ -22025,8 +21856,7 @@ ], "result": { "count": 3, - "item": "minecraft:stripped_oak_wood", - "tag": null + "id": "minecraft:stripped_oak_wood" }, "type": "minecraft:crafting_shaped" }, @@ -22046,8 +21876,7 @@ ], "result": { "count": 3, - "item": "minecraft:stripped_spruce_wood", - "tag": null + "id": "minecraft:stripped_spruce_wood" }, "type": "minecraft:crafting_shaped" }, @@ -22067,8 +21896,7 @@ ], "result": { "count": 3, - "item": "minecraft:stripped_warped_hyphae", - "tag": null + "id": "minecraft:stripped_warped_hyphae" }, "type": "minecraft:crafting_shaped" }, @@ -22082,8 +21910,7 @@ ], "result": { "count": 3, - "item": "minecraft:sugar", - "tag": null + "id": "minecraft:sugar" }, "type": "minecraft:crafting_shapeless" }, @@ -22097,8 +21924,7 @@ ], "result": { "count": 1, - "item": "minecraft:sugar", - "tag": null + "id": "minecraft:sugar" }, "type": "minecraft:crafting_shapeless" }, @@ -22127,8 +21953,7 @@ ], "result": { "count": 1, - "item": "minecraft:target", - "tag": null + "id": "minecraft:target" }, "type": "minecraft:crafting_shaped" }, @@ -22141,7 +21966,9 @@ "item": "minecraft:clay", "tag": null }, - "result": "minecraft:terracotta", + "result": { + "id": "minecraft:terracotta" + }, "type": "minecraft:smelting" }, "tide_armor_trim_smithing_template": { @@ -22170,8 +21997,7 @@ ], "result": { "count": 2, - "item": "minecraft:tide_armor_trim_smithing_template", - "tag": null + "id": "minecraft:tide_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -22208,8 +22034,7 @@ ], "result": { "count": 2, - "item": "minecraft:tinted_glass", - "tag": null + "id": "minecraft:tinted_glass" }, "type": "minecraft:crafting_shaped" }, @@ -22245,8 +22070,7 @@ ], "result": { "count": 1, - "item": "minecraft:tnt", - "tag": null + "id": "minecraft:tnt" }, "type": "minecraft:crafting_shaped" }, @@ -22262,8 +22086,7 @@ ], "result": { "count": 1, - "item": "minecraft:tnt_minecart", - "tag": null + "id": "minecraft:tnt_minecart" }, "type": "minecraft:crafting_shapeless" }, @@ -22294,8 +22117,7 @@ ], "result": { "count": 4, - "item": "minecraft:torch", - "tag": null + "id": "minecraft:torch" }, "type": "minecraft:crafting_shaped" }, @@ -22311,8 +22133,7 @@ ], "result": { "count": 1, - "item": "minecraft:trapped_chest", - "tag": null + "id": "minecraft:trapped_chest" }, "type": "minecraft:crafting_shapeless" }, @@ -22341,8 +22162,7 @@ ], "result": { "count": 2, - "item": "minecraft:tripwire_hook", - "tag": null + "id": "minecraft:tripwire_hook" }, "type": "minecraft:crafting_shaped" }, @@ -22351,7 +22171,7 @@ "key": { "X": { "count": 1, - "item": "minecraft:scute", + "item": "minecraft:turtle_scute", "tag": null } }, @@ -22361,8 +22181,7 @@ ], "result": { "count": 1, - "item": "minecraft:turtle_helmet", - "tag": null + "id": "minecraft:turtle_helmet" }, "type": "minecraft:crafting_shaped" }, @@ -22392,8 +22211,7 @@ ], "result": { "count": 2, - "item": "minecraft:vex_armor_trim_smithing_template", - "tag": null + "id": "minecraft:vex_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -22435,8 +22253,7 @@ ], "result": { "count": 2, - "item": "minecraft:ward_armor_trim_smithing_template", - "tag": null + "id": "minecraft:ward_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -22462,8 +22279,7 @@ ], "result": { "count": 1, - "item": "minecraft:warped_button", - "tag": null + "id": "minecraft:warped_button" }, "type": "minecraft:crafting_shapeless" }, @@ -22484,8 +22300,7 @@ ], "result": { "count": 3, - "item": "minecraft:warped_door", - "tag": null + "id": "minecraft:warped_door" }, "type": "minecraft:crafting_shaped" }, @@ -22510,8 +22325,7 @@ ], "result": { "count": 3, - "item": "minecraft:warped_fence", - "tag": null + "id": "minecraft:warped_fence" }, "type": "minecraft:crafting_shaped" }, @@ -22536,8 +22350,7 @@ ], "result": { "count": 1, - "item": "minecraft:warped_fence_gate", - "tag": null + "id": "minecraft:warped_fence_gate" }, "type": "minecraft:crafting_shaped" }, @@ -22561,8 +22374,7 @@ ], "result": { "count": 1, - "item": "minecraft:warped_fungus_on_a_stick", - "tag": null + "id": "minecraft:warped_fungus_on_a_stick" }, "type": "minecraft:crafting_shaped" }, @@ -22588,8 +22400,7 @@ ], "result": { "count": 6, - "item": "minecraft:warped_hanging_sign", - "tag": null + "id": "minecraft:warped_hanging_sign" }, "type": "minecraft:crafting_shaped" }, @@ -22609,8 +22420,7 @@ ], "result": { "count": 3, - "item": "minecraft:warped_hyphae", - "tag": null + "id": "minecraft:warped_hyphae" }, "type": "minecraft:crafting_shaped" }, @@ -22624,8 +22434,7 @@ ], "result": { "count": 4, - "item": "minecraft:warped_planks", - "tag": null + "id": "minecraft:warped_planks" }, "type": "minecraft:crafting_shapeless" }, @@ -22644,8 +22453,7 @@ ], "result": { "count": 1, - "item": "minecraft:warped_pressure_plate", - "tag": null + "id": "minecraft:warped_pressure_plate" }, "type": "minecraft:crafting_shaped" }, @@ -22671,8 +22479,7 @@ ], "result": { "count": 3, - "item": "minecraft:warped_sign", - "tag": null + "id": "minecraft:warped_sign" }, "type": "minecraft:crafting_shaped" }, @@ -22691,8 +22498,7 @@ ], "result": { "count": 6, - "item": "minecraft:warped_slab", - "tag": null + "id": "minecraft:warped_slab" }, "type": "minecraft:crafting_shaped" }, @@ -22713,8 +22519,7 @@ ], "result": { "count": 4, - "item": "minecraft:warped_stairs", - "tag": null + "id": "minecraft:warped_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -22734,8 +22539,7 @@ ], "result": { "count": 2, - "item": "minecraft:warped_trapdoor", - "tag": null + "id": "minecraft:warped_trapdoor" }, "type": "minecraft:crafting_shaped" }, @@ -22752,8 +22556,7 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_copper_block", - "tag": null + "id": "minecraft:waxed_copper_block" }, "type": "minecraft:crafting_shapeless" }, @@ -22773,8 +22576,7 @@ ], "result": { "count": 4, - "item": "minecraft:waxed_cut_copper", - "tag": null + "id": "minecraft:waxed_cut_copper" }, "type": "minecraft:crafting_shaped" }, @@ -22791,19 +22593,20 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_cut_copper", - "tag": null + "id": "minecraft:waxed_cut_copper" }, "type": "minecraft:crafting_shapeless" }, "waxed_cut_copper_from_waxed_copper_block_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:waxed_copper_block", "tag": null }, - "result": "minecraft:waxed_cut_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_cut_copper" + }, "type": "minecraft:stonecutting" }, "waxed_cut_copper_slab": { @@ -22821,8 +22624,7 @@ ], "result": { "count": 6, - "item": "minecraft:waxed_cut_copper_slab", - "tag": null + "id": "minecraft:waxed_cut_copper_slab" }, "type": "minecraft:crafting_shaped" }, @@ -22839,29 +22641,32 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_cut_copper_slab", - "tag": null + "id": "minecraft:waxed_cut_copper_slab" }, "type": "minecraft:crafting_shapeless" }, "waxed_cut_copper_slab_from_waxed_copper_block_stonecutting": { - "count": 8, "ingredient": { "count": 1, "item": "minecraft:waxed_copper_block", "tag": null }, - "result": "minecraft:waxed_cut_copper_slab", + "result": { + "count": 8, + "id": "minecraft:waxed_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:waxed_cut_copper", "tag": null }, - "result": "minecraft:waxed_cut_copper_slab", + "result": { + "count": 2, + "id": "minecraft:waxed_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "waxed_cut_copper_stairs": { @@ -22881,8 +22686,7 @@ ], "result": { "count": 4, - "item": "minecraft:waxed_cut_copper_stairs", - "tag": null + "id": "minecraft:waxed_cut_copper_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -22899,29 +22703,32 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_cut_copper_stairs", - "tag": null + "id": "minecraft:waxed_cut_copper_stairs" }, "type": "minecraft:crafting_shapeless" }, "waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:waxed_copper_block", "tag": null }, - "result": "minecraft:waxed_cut_copper_stairs", + "result": { + "count": 4, + "id": "minecraft:waxed_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:waxed_cut_copper", "tag": null }, - "result": "minecraft:waxed_cut_copper_stairs", + "result": { + "count": 1, + "id": "minecraft:waxed_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "waxed_exposed_copper_from_honeycomb": { @@ -22937,8 +22744,7 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_exposed_copper", - "tag": null + "id": "minecraft:waxed_exposed_copper" }, "type": "minecraft:crafting_shapeless" }, @@ -22958,8 +22764,7 @@ ], "result": { "count": 4, - "item": "minecraft:waxed_exposed_cut_copper", - "tag": null + "id": "minecraft:waxed_exposed_cut_copper" }, "type": "minecraft:crafting_shaped" }, @@ -22976,19 +22781,20 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_exposed_cut_copper", - "tag": null + "id": "minecraft:waxed_exposed_cut_copper" }, "type": "minecraft:crafting_shapeless" }, "waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:waxed_exposed_copper", "tag": null }, - "result": "minecraft:waxed_exposed_cut_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_cut_copper" + }, "type": "minecraft:stonecutting" }, "waxed_exposed_cut_copper_slab": { @@ -23006,8 +22812,7 @@ ], "result": { "count": 6, - "item": "minecraft:waxed_exposed_cut_copper_slab", - "tag": null + "id": "minecraft:waxed_exposed_cut_copper_slab" }, "type": "minecraft:crafting_shaped" }, @@ -23024,29 +22829,32 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_exposed_cut_copper_slab", - "tag": null + "id": "minecraft:waxed_exposed_cut_copper_slab" }, "type": "minecraft:crafting_shapeless" }, "waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting": { - "count": 8, "ingredient": { "count": 1, "item": "minecraft:waxed_exposed_copper", "tag": null }, - "result": "minecraft:waxed_exposed_cut_copper_slab", + "result": { + "count": 8, + "id": "minecraft:waxed_exposed_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:waxed_exposed_cut_copper", "tag": null }, - "result": "minecraft:waxed_exposed_cut_copper_slab", + "result": { + "count": 2, + "id": "minecraft:waxed_exposed_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "waxed_exposed_cut_copper_stairs": { @@ -23066,8 +22874,7 @@ ], "result": { "count": 4, - "item": "minecraft:waxed_exposed_cut_copper_stairs", - "tag": null + "id": "minecraft:waxed_exposed_cut_copper_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -23084,29 +22891,32 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_exposed_cut_copper_stairs", - "tag": null + "id": "minecraft:waxed_exposed_cut_copper_stairs" }, "type": "minecraft:crafting_shapeless" }, "waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:waxed_exposed_copper", "tag": null }, - "result": "minecraft:waxed_exposed_cut_copper_stairs", + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:waxed_exposed_cut_copper", "tag": null }, - "result": "minecraft:waxed_exposed_cut_copper_stairs", + "result": { + "count": 1, + "id": "minecraft:waxed_exposed_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "waxed_oxidized_copper_from_honeycomb": { @@ -23122,8 +22932,7 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_oxidized_copper", - "tag": null + "id": "minecraft:waxed_oxidized_copper" }, "type": "minecraft:crafting_shapeless" }, @@ -23143,8 +22952,7 @@ ], "result": { "count": 4, - "item": "minecraft:waxed_oxidized_cut_copper", - "tag": null + "id": "minecraft:waxed_oxidized_cut_copper" }, "type": "minecraft:crafting_shaped" }, @@ -23161,19 +22969,20 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_oxidized_cut_copper", - "tag": null + "id": "minecraft:waxed_oxidized_cut_copper" }, "type": "minecraft:crafting_shapeless" }, "waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:waxed_oxidized_copper", "tag": null }, - "result": "minecraft:waxed_oxidized_cut_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_cut_copper" + }, "type": "minecraft:stonecutting" }, "waxed_oxidized_cut_copper_slab": { @@ -23191,8 +23000,7 @@ ], "result": { "count": 6, - "item": "minecraft:waxed_oxidized_cut_copper_slab", - "tag": null + "id": "minecraft:waxed_oxidized_cut_copper_slab" }, "type": "minecraft:crafting_shaped" }, @@ -23209,29 +23017,32 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_oxidized_cut_copper_slab", - "tag": null + "id": "minecraft:waxed_oxidized_cut_copper_slab" }, "type": "minecraft:crafting_shapeless" }, "waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting": { - "count": 8, "ingredient": { "count": 1, "item": "minecraft:waxed_oxidized_copper", "tag": null }, - "result": "minecraft:waxed_oxidized_cut_copper_slab", + "result": { + "count": 8, + "id": "minecraft:waxed_oxidized_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:waxed_oxidized_cut_copper", "tag": null }, - "result": "minecraft:waxed_oxidized_cut_copper_slab", + "result": { + "count": 2, + "id": "minecraft:waxed_oxidized_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "waxed_oxidized_cut_copper_stairs": { @@ -23251,8 +23062,7 @@ ], "result": { "count": 4, - "item": "minecraft:waxed_oxidized_cut_copper_stairs", - "tag": null + "id": "minecraft:waxed_oxidized_cut_copper_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -23269,29 +23079,32 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_oxidized_cut_copper_stairs", - "tag": null + "id": "minecraft:waxed_oxidized_cut_copper_stairs" }, "type": "minecraft:crafting_shapeless" }, "waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:waxed_oxidized_copper", "tag": null }, - "result": "minecraft:waxed_oxidized_cut_copper_stairs", + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:waxed_oxidized_cut_copper", "tag": null }, - "result": "minecraft:waxed_oxidized_cut_copper_stairs", + "result": { + "count": 1, + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "waxed_weathered_copper_from_honeycomb": { @@ -23307,8 +23120,7 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_weathered_copper", - "tag": null + "id": "minecraft:waxed_weathered_copper" }, "type": "minecraft:crafting_shapeless" }, @@ -23328,8 +23140,7 @@ ], "result": { "count": 4, - "item": "minecraft:waxed_weathered_cut_copper", - "tag": null + "id": "minecraft:waxed_weathered_cut_copper" }, "type": "minecraft:crafting_shaped" }, @@ -23346,19 +23157,20 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_weathered_cut_copper", - "tag": null + "id": "minecraft:waxed_weathered_cut_copper" }, "type": "minecraft:crafting_shapeless" }, "waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:waxed_weathered_copper", "tag": null }, - "result": "minecraft:waxed_weathered_cut_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_cut_copper" + }, "type": "minecraft:stonecutting" }, "waxed_weathered_cut_copper_slab": { @@ -23376,8 +23188,7 @@ ], "result": { "count": 6, - "item": "minecraft:waxed_weathered_cut_copper_slab", - "tag": null + "id": "minecraft:waxed_weathered_cut_copper_slab" }, "type": "minecraft:crafting_shaped" }, @@ -23394,29 +23205,32 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_weathered_cut_copper_slab", - "tag": null + "id": "minecraft:waxed_weathered_cut_copper_slab" }, "type": "minecraft:crafting_shapeless" }, "waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting": { - "count": 8, "ingredient": { "count": 1, "item": "minecraft:waxed_weathered_copper", "tag": null }, - "result": "minecraft:waxed_weathered_cut_copper_slab", + "result": { + "count": 8, + "id": "minecraft:waxed_weathered_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:waxed_weathered_cut_copper", "tag": null }, - "result": "minecraft:waxed_weathered_cut_copper_slab", + "result": { + "count": 2, + "id": "minecraft:waxed_weathered_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "waxed_weathered_cut_copper_stairs": { @@ -23436,8 +23250,7 @@ ], "result": { "count": 4, - "item": "minecraft:waxed_weathered_cut_copper_stairs", - "tag": null + "id": "minecraft:waxed_weathered_cut_copper_stairs" }, "type": "minecraft:crafting_shaped" }, @@ -23454,29 +23267,32 @@ ], "result": { "count": 1, - "item": "minecraft:waxed_weathered_cut_copper_stairs", - "tag": null + "id": "minecraft:waxed_weathered_cut_copper_stairs" }, "type": "minecraft:crafting_shapeless" }, "waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:waxed_weathered_copper", "tag": null }, - "result": "minecraft:waxed_weathered_cut_copper_stairs", + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:waxed_weathered_cut_copper", "tag": null }, - "result": "minecraft:waxed_weathered_cut_copper_stairs", + "result": { + "count": 1, + "id": "minecraft:waxed_weathered_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "wayfinder_armor_trim_smithing_template": { @@ -23505,8 +23321,7 @@ ], "result": { "count": 2, - "item": "minecraft:wayfinder_armor_trim_smithing_template", - "tag": null + "id": "minecraft:wayfinder_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -23537,19 +23352,20 @@ ], "result": { "count": 4, - "item": "minecraft:weathered_cut_copper", - "tag": null + "id": "minecraft:weathered_cut_copper" }, "type": "minecraft:crafting_shaped" }, "weathered_cut_copper_from_weathered_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:weathered_copper", "tag": null }, - "result": "minecraft:weathered_cut_copper", + "result": { + "count": 4, + "id": "minecraft:weathered_cut_copper" + }, "type": "minecraft:stonecutting" }, "weathered_cut_copper_slab": { @@ -23566,29 +23382,32 @@ ], "result": { "count": 6, - "item": "minecraft:weathered_cut_copper_slab", - "tag": null + "id": "minecraft:weathered_cut_copper_slab" }, "type": "minecraft:crafting_shaped" }, "weathered_cut_copper_slab_from_weathered_copper_stonecutting": { - "count": 8, "ingredient": { "count": 1, "item": "minecraft:weathered_copper", "tag": null }, - "result": "minecraft:weathered_cut_copper_slab", + "result": { + "count": 8, + "id": "minecraft:weathered_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting": { - "count": 2, "ingredient": { "count": 1, "item": "minecraft:weathered_cut_copper", "tag": null }, - "result": "minecraft:weathered_cut_copper_slab", + "result": { + "count": 2, + "id": "minecraft:weathered_cut_copper_slab" + }, "type": "minecraft:stonecutting" }, "weathered_cut_copper_stairs": { @@ -23607,29 +23426,32 @@ ], "result": { "count": 4, - "item": "minecraft:weathered_cut_copper_stairs", - "tag": null + "id": "minecraft:weathered_cut_copper_stairs" }, "type": "minecraft:crafting_shaped" }, "weathered_cut_copper_stairs_from_weathered_copper_stonecutting": { - "count": 4, "ingredient": { "count": 1, "item": "minecraft:weathered_copper", "tag": null }, - "result": "minecraft:weathered_cut_copper_stairs", + "result": { + "count": 4, + "id": "minecraft:weathered_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting": { - "count": 1, "ingredient": { "count": 1, "item": "minecraft:weathered_cut_copper", "tag": null }, - "result": "minecraft:weathered_cut_copper_stairs", + "result": { + "count": 1, + "id": "minecraft:weathered_cut_copper_stairs" + }, "type": "minecraft:stonecutting" }, "wheat": { @@ -23641,8 +23463,7 @@ ], "result": { "count": 9, - "item": "minecraft:wheat", - "tag": null + "id": "minecraft:wheat" }, "type": "minecraft:crafting_shapeless" }, @@ -23668,8 +23489,7 @@ ], "result": { "count": 1, - "item": "minecraft:white_banner", - "tag": null + "id": "minecraft:white_banner" }, "type": "minecraft:crafting_shaped" }, @@ -23693,8 +23513,7 @@ ], "result": { "count": 1, - "item": "minecraft:white_bed", - "tag": null + "id": "minecraft:white_bed" }, "type": "minecraft:crafting_shaped" }, @@ -23711,8 +23530,7 @@ ], "result": { "count": 1, - "item": "minecraft:white_candle", - "tag": null + "id": "minecraft:white_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -23731,8 +23549,7 @@ ], "result": { "count": 3, - "item": "minecraft:white_carpet", - "tag": null + "id": "minecraft:white_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -23770,8 +23587,7 @@ ], "result": { "count": 8, - "item": "minecraft:white_concrete_powder", - "tag": null + "id": "minecraft:white_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -23785,8 +23601,7 @@ ], "result": { "count": 1, - "item": "minecraft:white_dye", - "tag": null + "id": "minecraft:white_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -23800,8 +23615,7 @@ ], "result": { "count": 1, - "item": "minecraft:white_dye", - "tag": null + "id": "minecraft:white_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -23814,7 +23628,9 @@ "item": "minecraft:white_terracotta", "tag": null }, - "result": "minecraft:white_glazed_terracotta", + "result": { + "id": "minecraft:white_glazed_terracotta" + }, "type": "minecraft:smelting" }, "white_stained_glass": { @@ -23839,8 +23655,7 @@ ], "result": { "count": 8, - "item": "minecraft:white_stained_glass", - "tag": null + "id": "minecraft:white_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -23860,8 +23675,7 @@ ], "result": { "count": 16, - "item": "minecraft:white_stained_glass_pane", - "tag": null + "id": "minecraft:white_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -23887,8 +23701,7 @@ ], "result": { "count": 8, - "item": "minecraft:white_stained_glass_pane", - "tag": null + "id": "minecraft:white_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -23914,8 +23727,7 @@ ], "result": { "count": 8, - "item": "minecraft:white_terracotta", - "tag": null + "id": "minecraft:white_terracotta" }, "type": "minecraft:crafting_shaped" }, @@ -23934,8 +23746,7 @@ ], "result": { "count": 1, - "item": "minecraft:white_wool", - "tag": null + "id": "minecraft:white_wool" }, "type": "minecraft:crafting_shaped" }, @@ -23965,8 +23776,7 @@ ], "result": { "count": 2, - "item": "minecraft:wild_armor_trim_smithing_template", - "tag": null + "id": "minecraft:wild_armor_trim_smithing_template" }, "type": "minecraft:crafting_shaped" }, @@ -23982,6 +23792,26 @@ }, "type": "minecraft:smithing_trim" }, + "wolf_armor": { + "category": "equipment", + "key": { + "X": { + "count": 1, + "item": "minecraft:armadillo_scute", + "tag": null + } + }, + "pattern": [ + "X ", + "XXX", + "X X" + ], + "result": { + "count": 1, + "id": "minecraft:wolf_armor" + }, + "type": "minecraft:crafting_shaped" + }, "wooden_axe": { "category": "equipment", "key": { @@ -24002,8 +23832,7 @@ ], "result": { "count": 1, - "item": "minecraft:wooden_axe", - "tag": null + "id": "minecraft:wooden_axe" }, "type": "minecraft:crafting_shaped" }, @@ -24027,8 +23856,7 @@ ], "result": { "count": 1, - "item": "minecraft:wooden_hoe", - "tag": null + "id": "minecraft:wooden_hoe" }, "type": "minecraft:crafting_shaped" }, @@ -24052,8 +23880,7 @@ ], "result": { "count": 1, - "item": "minecraft:wooden_pickaxe", - "tag": null + "id": "minecraft:wooden_pickaxe" }, "type": "minecraft:crafting_shaped" }, @@ -24077,8 +23904,7 @@ ], "result": { "count": 1, - "item": "minecraft:wooden_shovel", - "tag": null + "id": "minecraft:wooden_shovel" }, "type": "minecraft:crafting_shaped" }, @@ -24102,8 +23928,7 @@ ], "result": { "count": 1, - "item": "minecraft:wooden_sword", - "tag": null + "id": "minecraft:wooden_sword" }, "type": "minecraft:crafting_shaped" }, @@ -24122,8 +23947,7 @@ ], "result": { "count": 1, - "item": "minecraft:writable_book", - "tag": null + "id": "minecraft:writable_book" }, "type": "minecraft:crafting_shapeless" }, @@ -24149,8 +23973,7 @@ ], "result": { "count": 1, - "item": "minecraft:yellow_banner", - "tag": null + "id": "minecraft:yellow_banner" }, "type": "minecraft:crafting_shaped" }, @@ -24174,8 +23997,7 @@ ], "result": { "count": 1, - "item": "minecraft:yellow_bed", - "tag": null + "id": "minecraft:yellow_bed" }, "type": "minecraft:crafting_shaped" }, @@ -24192,8 +24014,7 @@ ], "result": { "count": 1, - "item": "minecraft:yellow_candle", - "tag": null + "id": "minecraft:yellow_candle" }, "type": "minecraft:crafting_shapeless" }, @@ -24212,8 +24033,7 @@ ], "result": { "count": 3, - "item": "minecraft:yellow_carpet", - "tag": null + "id": "minecraft:yellow_carpet" }, "type": "minecraft:crafting_shaped" }, @@ -24251,8 +24071,7 @@ ], "result": { "count": 8, - "item": "minecraft:yellow_concrete_powder", - "tag": null + "id": "minecraft:yellow_concrete_powder" }, "type": "minecraft:crafting_shapeless" }, @@ -24266,8 +24085,7 @@ ], "result": { "count": 1, - "item": "minecraft:yellow_dye", - "tag": null + "id": "minecraft:yellow_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -24281,8 +24099,7 @@ ], "result": { "count": 2, - "item": "minecraft:yellow_dye", - "tag": null + "id": "minecraft:yellow_dye" }, "type": "minecraft:crafting_shapeless" }, @@ -24295,7 +24112,9 @@ "item": "minecraft:yellow_terracotta", "tag": null }, - "result": "minecraft:yellow_glazed_terracotta", + "result": { + "id": "minecraft:yellow_glazed_terracotta" + }, "type": "minecraft:smelting" }, "yellow_stained_glass": { @@ -24320,8 +24139,7 @@ ], "result": { "count": 8, - "item": "minecraft:yellow_stained_glass", - "tag": null + "id": "minecraft:yellow_stained_glass" }, "type": "minecraft:crafting_shaped" }, @@ -24341,8 +24159,7 @@ ], "result": { "count": 16, - "item": "minecraft:yellow_stained_glass_pane", - "tag": null + "id": "minecraft:yellow_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -24368,8 +24185,7 @@ ], "result": { "count": 8, - "item": "minecraft:yellow_stained_glass_pane", - "tag": null + "id": "minecraft:yellow_stained_glass_pane" }, "type": "minecraft:crafting_shaped" }, @@ -24395,8 +24211,7 @@ ], "result": { "count": 8, - "item": "minecraft:yellow_terracotta", - "tag": null + "id": "minecraft:yellow_terracotta" }, "type": "minecraft:crafting_shaped" } diff --git a/Obsidian/Assets/tags.json b/Obsidian/Assets/tags.json index 457ea755f..652e25c59 100644 --- a/Obsidian/Assets/tags.json +++ b/Obsidian/Assets/tags.json @@ -266,6 +266,16 @@ "minecraft:damaged_anvil" ] }, + "blocks/armadillo_spawnable_on": { + "name": "armadillo_spawnable_on", + "type": "blocks", + "values": [ + "#minecraft:animals_spawnable_on", + "#minecraft:badlands_terracotta", + "minecraft:red_sand", + "minecraft:coarse_dirt" + ] + }, "blocks/axolotls_spawnable_on": { "name": "axolotls_spawnable_on", "type": "blocks", @@ -299,6 +309,19 @@ "minecraft:powder_snow" ] }, + "blocks/badlands_terracotta": { + "name": "badlands_terracotta", + "type": "blocks", + "values": [ + "minecraft:terracotta", + "minecraft:white_terracotta", + "minecraft:yellow_terracotta", + "minecraft:orange_terracotta", + "minecraft:red_terracotta", + "minecraft:brown_terracotta", + "minecraft:light_gray_terracotta" + ] + }, "blocks/bamboo_blocks": { "name": "bamboo_blocks", "type": "blocks", @@ -770,6 +793,13 @@ "minecraft:muddy_mangrove_roots" ] }, + "blocks/does_not_block_hoppers": { + "name": "does_not_block_hoppers", + "type": "blocks", + "values": [ + "#minecraft:beehives" + ] + }, "blocks/doors": { "name": "doors", "type": "blocks", @@ -1093,6 +1123,49 @@ "minecraft:tinted_glass" ] }, + "blocks/incorrect_for_diamond_tool": { + "name": "incorrect_for_diamond_tool", + "type": "blocks", + "values": [] + }, + "blocks/incorrect_for_gold_tool": { + "name": "incorrect_for_gold_tool", + "type": "blocks", + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool", + "#minecraft:needs_stone_tool" + ] + }, + "blocks/incorrect_for_iron_tool": { + "name": "incorrect_for_iron_tool", + "type": "blocks", + "values": [ + "#minecraft:needs_diamond_tool" + ] + }, + "blocks/incorrect_for_netherite_tool": { + "name": "incorrect_for_netherite_tool", + "type": "blocks", + "values": [] + }, + "blocks/incorrect_for_stone_tool": { + "name": "incorrect_for_stone_tool", + "type": "blocks", + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool" + ] + }, + "blocks/incorrect_for_wooden_tool": { + "name": "incorrect_for_wooden_tool", + "type": "blocks", + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool", + "#minecraft:needs_stone_tool" + ] + }, "blocks/infiniburn_end": { "name": "infiniburn_end", "type": "blocks", @@ -2745,7 +2818,9 @@ "values": [ "minecraft:grass_block", "minecraft:snow", - "minecraft:snow_block" + "minecraft:snow_block", + "minecraft:coarse_dirt", + "minecraft:podzol" ] }, "blocks/wooden_buttons": { @@ -2948,7 +3023,6 @@ "values": [ "minecraft:arrow", "minecraft:trident", - "minecraft:mob_projectile", "minecraft:fireball", "minecraft:wither_skull" ] @@ -3046,6 +3120,24 @@ "minecraft:falling_stalactite" ] }, + "damage_type/bypasses_wolf_armor": { + "name": "bypasses_wolf_armor", + "type": "damage_type", + "values": [ + "#minecraft:bypasses_invulnerability", + "minecraft:cramming", + "minecraft:drown", + "minecraft:dry_out", + "minecraft:freeze", + "minecraft:in_wall", + "minecraft:indirect_magic", + "minecraft:magic", + "minecraft:outside_border", + "minecraft:starve", + "minecraft:thorns", + "minecraft:wither" + ] + }, "damage_type/can_break_armor_stand": { "name": "can_break_armor_stand", "type": "damage_type", @@ -3121,6 +3213,13 @@ "minecraft:lightning_bolt" ] }, + "damage_type/is_player_attack": { + "name": "is_player_attack", + "type": "damage_type", + "values": [ + "minecraft:player_attack" + ] + }, "damage_type/is_projectile": { "name": "is_projectile", "type": "damage_type", @@ -3174,6 +3273,69 @@ "minecraft:drown" ] }, + "enchantment/tooltip_order": { + "name": "tooltip_order", + "type": "enchantment", + "values": [ + "minecraft:binding_curse", + "minecraft:vanishing_curse", + "minecraft:riptide", + "minecraft:channeling", + "minecraft:frost_walker", + "minecraft:sharpness", + "minecraft:smite", + "minecraft:bane_of_arthropods", + "minecraft:impaling", + "minecraft:power", + "minecraft:piercing", + "minecraft:sweeping_edge", + "minecraft:multishot", + "minecraft:fire_aspect", + "minecraft:flame", + "minecraft:knockback", + "minecraft:punch", + "minecraft:protection", + "minecraft:blast_protection", + "minecraft:fire_protection", + "minecraft:projectile_protection", + "minecraft:feather_falling", + "minecraft:fortune", + "minecraft:looting", + "minecraft:silk_touch", + "minecraft:luck_of_the_sea", + "minecraft:efficiency", + "minecraft:quick_charge", + "minecraft:lure", + "minecraft:respiration", + "minecraft:aqua_affinity", + "minecraft:soul_speed", + "minecraft:swift_sneak", + "minecraft:depth_strider", + "minecraft:thorns", + "minecraft:loyalty", + "minecraft:unbreaking", + "minecraft:infinity", + "minecraft:mending" + ] + }, + "entity_types/aquatic": { + "name": "aquatic", + "type": "entity_types", + "values": [ + "minecraft:turtle", + "minecraft:axolotl", + "minecraft:guardian", + "minecraft:elder_guardian", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish", + "minecraft:dolphin", + "minecraft:squid", + "minecraft:glow_squid", + "minecraft:tadpole" + ] + }, "entity_types/arrows": { "name": "arrows", "type": "entity_types", @@ -3182,6 +3344,17 @@ "minecraft:spectral_arrow" ] }, + "entity_types/arthropod": { + "name": "arthropod", + "type": "entity_types", + "values": [ + "minecraft:bee", + "minecraft:endermite", + "minecraft:silverfish", + "minecraft:spider", + "minecraft:cave_spider" + ] + }, "entity_types/axolotl_always_hostiles": { "name": "axolotl_always_hostiles", "type": "entity_types", @@ -3297,6 +3470,30 @@ "minecraft:magma_cube" ] }, + "entity_types/ignores_poison_and_regen": { + "name": "ignores_poison_and_regen", + "type": "entity_types", + "values": [ + "#minecraft:undead" + ] + }, + "entity_types/illager": { + "name": "illager", + "type": "entity_types", + "values": [ + "minecraft:evoker", + "minecraft:illusioner", + "minecraft:pillager", + "minecraft:vindicator" + ] + }, + "entity_types/illager_friends": { + "name": "illager_friends", + "type": "entity_types", + "values": [ + "#minecraft:illager" + ] + }, "entity_types/impact_projectiles": { "name": "impact_projectiles", "type": "entity_types", @@ -3312,6 +3509,13 @@ "minecraft:wither_skull" ] }, + "entity_types/inverted_healing_and_harm": { + "name": "inverted_healing_and_harm", + "type": "entity_types", + "values": [ + "#minecraft:undead" + ] + }, "entity_types/non_controlling_rider": { "name": "non_controlling_rider", "type": "entity_types", @@ -3320,6 +3524,23 @@ "minecraft:magma_cube" ] }, + "entity_types/not_scary_for_pufferfish": { + "name": "not_scary_for_pufferfish", + "type": "entity_types", + "values": [ + "minecraft:turtle", + "minecraft:guardian", + "minecraft:elder_guardian", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish", + "minecraft:dolphin", + "minecraft:squid", + "minecraft:glow_squid", + "minecraft:tadpole" + ] + }, "entity_types/powder_snow_walkable_mobs": { "name": "powder_snow_walkable_mobs", "type": "entity_types", @@ -3342,6 +3563,34 @@ "minecraft:witch" ] }, + "entity_types/redirectable_projectile": { + "name": "redirectable_projectile", + "type": "entity_types", + "values": [ + "minecraft:fireball" + ] + }, + "entity_types/sensitive_to_bane_of_arthropods": { + "name": "sensitive_to_bane_of_arthropods", + "type": "entity_types", + "values": [ + "#minecraft:arthropod" + ] + }, + "entity_types/sensitive_to_impaling": { + "name": "sensitive_to_impaling", + "type": "entity_types", + "values": [ + "#minecraft:aquatic" + ] + }, + "entity_types/sensitive_to_smite": { + "name": "sensitive_to_smite", + "type": "entity_types", + "values": [ + "#minecraft:undead" + ] + }, "entity_types/skeletons": { "name": "skeletons", "type": "entity_types", @@ -3362,6 +3611,13 @@ "minecraft:phantom" ] }, + "entity_types/wither_friends": { + "name": "wither_friends", + "type": "entity_types", + "values": [ + "#minecraft:undead" + ] + }, "entity_types/zombies": { "name": "zombies", "type": "entity_types", @@ -3587,6 +3843,13 @@ "minecraft:damaged_anvil" ] }, + "items/armadillo_food": { + "name": "armadillo_food", + "type": "items", + "values": [ + "minecraft:spider_eye" + ] + }, "items/arrows": { "name": "arrows", "type": "items", @@ -3608,8 +3871,8 @@ "minecraft:iron_axe" ] }, - "items/axolotl_tempt_items": { - "name": "axolotl_tempt_items", + "items/axolotl_food": { + "name": "axolotl_food", "type": "items", "values": [ "minecraft:tropical_fish_bucket" @@ -3678,6 +3941,13 @@ "minecraft:yellow_bed" ] }, + "items/bee_food": { + "name": "bee_food", + "type": "items", + "values": [ + "#minecraft:flowers" + ] + }, "items/birch_logs": { "name": "birch_logs", "type": "items", @@ -3719,7 +3989,12 @@ "name": "breaks_decorated_pots", "type": "items", "values": [ - "#minecraft:tools" + "#minecraft:swords", + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes", + "minecraft:trident" ] }, "items/buttons": { @@ -3730,6 +4005,13 @@ "#minecraft:stone_buttons" ] }, + "items/camel_food": { + "name": "camel_food", + "type": "items", + "values": [ + "minecraft:cactus" + ] + }, "items/candles": { "name": "candles", "type": "items", @@ -3753,6 +4035,14 @@ "minecraft:black_candle" ] }, + "items/cat_food": { + "name": "cat_food", + "type": "items", + "values": [ + "minecraft:cod", + "minecraft:salmon" + ] + }, "items/cherry_logs": { "name": "cherry_logs", "type": "items", @@ -3763,6 +4053,18 @@ "minecraft:stripped_cherry_wood" ] }, + "items/chest_armor": { + "name": "chest_armor", + "type": "items", + "values": [ + "minecraft:leather_chestplate", + "minecraft:chainmail_chestplate", + "minecraft:golden_chestplate", + "minecraft:iron_chestplate", + "minecraft:diamond_chestplate", + "minecraft:netherite_chestplate" + ] + }, "items/chest_boats": { "name": "chest_boats", "type": "items", @@ -3778,6 +4080,18 @@ "minecraft:cherry_chest_boat" ] }, + "items/chicken_food": { + "name": "chicken_food", + "type": "items", + "values": [ + "minecraft:wheat_seeds", + "minecraft:melon_seeds", + "minecraft:pumpkin_seeds", + "minecraft:beetroot_seeds", + "minecraft:torchflower_seeds", + "minecraft:pitcher_pod" + ] + }, "items/cluster_max_harvestables": { "name": "cluster_max_harvestables", "type": "items", @@ -3831,6 +4145,13 @@ "minecraft:deepslate_copper_ore" ] }, + "items/cow_food": { + "name": "cow_food", + "type": "items", + "values": [ + "minecraft:wheat" + ] + }, "items/creeper_drop_music_discs": { "name": "creeper_drop_music_discs", "type": "items", @@ -3950,6 +4271,18 @@ "minecraft:iron_door" ] }, + "items/dyeable": { + "name": "dyeable", + "type": "items", + "values": [ + "minecraft:leather_helmet", + "minecraft:leather_chestplate", + "minecraft:leather_leggings", + "minecraft:leather_boots", + "minecraft:leather_horse_armor", + "minecraft:wolf_armor" + ] + }, "items/emerald_ores": { "name": "emerald_ores", "type": "items", @@ -3958,6 +4291,171 @@ "minecraft:deepslate_emerald_ore" ] }, + "items/enchantable/armor": { + "name": "enchantable/armor", + "type": "items", + "values": [ + "#minecraft:enchantable/foot_armor", + "#minecraft:enchantable/leg_armor", + "#minecraft:enchantable/chest_armor", + "#minecraft:enchantable/head_armor" + ] + }, + "items/enchantable/bow": { + "name": "enchantable/bow", + "type": "items", + "values": [ + "minecraft:bow" + ] + }, + "items/enchantable/chest_armor": { + "name": "enchantable/chest_armor", + "type": "items", + "values": [ + "#minecraft:chest_armor" + ] + }, + "items/enchantable/crossbow": { + "name": "enchantable/crossbow", + "type": "items", + "values": [ + "minecraft:crossbow" + ] + }, + "items/enchantable/durability": { + "name": "enchantable/durability", + "type": "items", + "values": [ + "#minecraft:foot_armor", + "#minecraft:leg_armor", + "#minecraft:chest_armor", + "#minecraft:head_armor", + "minecraft:elytra", + "minecraft:shield", + "#minecraft:swords", + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes", + "minecraft:bow", + "minecraft:crossbow", + "minecraft:trident", + "minecraft:flint_and_steel", + "minecraft:shears", + "minecraft:brush", + "minecraft:fishing_rod", + "minecraft:carrot_on_a_stick", + "minecraft:warped_fungus_on_a_stick" + ] + }, + "items/enchantable/equippable": { + "name": "enchantable/equippable", + "type": "items", + "values": [ + "#minecraft:foot_armor", + "#minecraft:leg_armor", + "#minecraft:chest_armor", + "#minecraft:head_armor", + "minecraft:elytra", + "#minecraft:skulls", + "minecraft:carved_pumpkin" + ] + }, + "items/enchantable/fire_aspect": { + "name": "enchantable/fire_aspect", + "type": "items", + "values": [ + "#minecraft:enchantable/sword" + ] + }, + "items/enchantable/fishing": { + "name": "enchantable/fishing", + "type": "items", + "values": [ + "minecraft:fishing_rod" + ] + }, + "items/enchantable/foot_armor": { + "name": "enchantable/foot_armor", + "type": "items", + "values": [ + "#minecraft:foot_armor" + ] + }, + "items/enchantable/head_armor": { + "name": "enchantable/head_armor", + "type": "items", + "values": [ + "#minecraft:head_armor" + ] + }, + "items/enchantable/leg_armor": { + "name": "enchantable/leg_armor", + "type": "items", + "values": [ + "#minecraft:leg_armor" + ] + }, + "items/enchantable/mining": { + "name": "enchantable/mining", + "type": "items", + "values": [ + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes", + "minecraft:shears" + ] + }, + "items/enchantable/mining_loot": { + "name": "enchantable/mining_loot", + "type": "items", + "values": [ + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes" + ] + }, + "items/enchantable/sharp_weapon": { + "name": "enchantable/sharp_weapon", + "type": "items", + "values": [ + "#minecraft:swords", + "#minecraft:axes" + ] + }, + "items/enchantable/sword": { + "name": "enchantable/sword", + "type": "items", + "values": [ + "#minecraft:swords" + ] + }, + "items/enchantable/trident": { + "name": "enchantable/trident", + "type": "items", + "values": [ + "minecraft:trident" + ] + }, + "items/enchantable/vanishing": { + "name": "enchantable/vanishing", + "type": "items", + "values": [ + "#minecraft:enchantable/durability", + "minecraft:compass", + "minecraft:carved_pumpkin", + "#minecraft:skulls" + ] + }, + "items/enchantable/weapon": { + "name": "enchantable/weapon", + "type": "items", + "values": [ + "#minecraft:enchantable/sharp_weapon" + ] + }, "items/fence_gates": { "name": "fence_gates", "type": "items", @@ -4010,6 +4508,18 @@ "minecraft:spore_blossom" ] }, + "items/foot_armor": { + "name": "foot_armor", + "type": "items", + "values": [ + "minecraft:leather_boots", + "minecraft:chainmail_boots", + "minecraft:golden_boots", + "minecraft:iron_boots", + "minecraft:diamond_boots", + "minecraft:netherite_boots" + ] + }, "items/fox_food": { "name": "fox_food", "type": "items", @@ -4029,6 +4539,20 @@ "minecraft:leather_horse_armor" ] }, + "items/frog_food": { + "name": "frog_food", + "type": "items", + "values": [ + "minecraft:slime_ball" + ] + }, + "items/goat_food": { + "name": "goat_food", + "type": "items", + "values": [ + "minecraft:wheat" + ] + }, "items/gold_ores": { "name": "gold_ores", "type": "items", @@ -4055,6 +4579,19 @@ "minecraft:bamboo_hanging_sign" ] }, + "items/head_armor": { + "name": "head_armor", + "type": "items", + "values": [ + "minecraft:leather_helmet", + "minecraft:chainmail_helmet", + "minecraft:golden_helmet", + "minecraft:iron_helmet", + "minecraft:diamond_helmet", + "minecraft:netherite_helmet", + "minecraft:turtle_helmet" + ] + }, "items/hoes": { "name": "hoes", "type": "items", @@ -4067,6 +4604,35 @@ "minecraft:iron_hoe" ] }, + "items/hoglin_food": { + "name": "hoglin_food", + "type": "items", + "values": [ + "minecraft:crimson_fungus" + ] + }, + "items/horse_food": { + "name": "horse_food", + "type": "items", + "values": [ + "minecraft:wheat", + "minecraft:sugar", + "minecraft:hay_block", + "minecraft:apple", + "minecraft:golden_carrot", + "minecraft:golden_apple", + "minecraft:enchanted_golden_apple" + ] + }, + "items/horse_tempt_items": { + "name": "horse_tempt_items", + "type": "items", + "values": [ + "minecraft:golden_carrot", + "minecraft:golden_apple", + "minecraft:enchanted_golden_apple" + ] + }, "items/ignored_by_piglin_babies": { "name": "ignored_by_piglin_babies", "type": "items", @@ -4124,6 +4690,33 @@ "minecraft:writable_book" ] }, + "items/leg_armor": { + "name": "leg_armor", + "type": "items", + "values": [ + "minecraft:leather_leggings", + "minecraft:chainmail_leggings", + "minecraft:golden_leggings", + "minecraft:iron_leggings", + "minecraft:diamond_leggings", + "minecraft:netherite_leggings" + ] + }, + "items/llama_food": { + "name": "llama_food", + "type": "items", + "values": [ + "minecraft:wheat", + "minecraft:hay_block" + ] + }, + "items/llama_tempt_items": { + "name": "llama_tempt_items", + "type": "items", + "values": [ + "minecraft:hay_block" + ] + }, "items/logs": { "name": "logs", "type": "items", @@ -4157,6 +4750,23 @@ "minecraft:stripped_mangrove_wood" ] }, + "items/meat": { + "name": "meat", + "type": "items", + "values": [ + "minecraft:beef", + "minecraft:chicken", + "minecraft:cooked_beef", + "minecraft:cooked_chicken", + "minecraft:cooked_mutton", + "minecraft:cooked_porkchop", + "minecraft:cooked_rabbit", + "minecraft:mutton", + "minecraft:porkchop", + "minecraft:rabbit", + "minecraft:rotten_flesh" + ] + }, "items/music_discs": { "name": "music_discs", "type": "items", @@ -4227,6 +4837,40 @@ "minecraft:stripped_oak_wood" ] }, + "items/ocelot_food": { + "name": "ocelot_food", + "type": "items", + "values": [ + "minecraft:cod", + "minecraft:salmon" + ] + }, + "items/panda_food": { + "name": "panda_food", + "type": "items", + "values": [ + "minecraft:bamboo" + ] + }, + "items/parrot_food": { + "name": "parrot_food", + "type": "items", + "values": [ + "minecraft:wheat_seeds", + "minecraft:melon_seeds", + "minecraft:pumpkin_seeds", + "minecraft:beetroot_seeds", + "minecraft:torchflower_seeds", + "minecraft:pitcher_pod" + ] + }, + "items/parrot_poisonous_food": { + "name": "parrot_poisonous_food", + "type": "items", + "values": [ + "minecraft:cookie" + ] + }, "items/pickaxes": { "name": "pickaxes", "type": "items", @@ -4239,6 +4883,15 @@ "minecraft:iron_pickaxe" ] }, + "items/pig_food": { + "name": "pig_food", + "type": "items", + "values": [ + "minecraft:carrot", + "minecraft:potato", + "minecraft:beetroot" + ] + }, "items/piglin_food": { "name": "piglin_food", "type": "items", @@ -4302,6 +4955,15 @@ "minecraft:cherry_planks" ] }, + "items/rabbit_food": { + "name": "rabbit_food", + "type": "items", + "values": [ + "minecraft:carrot", + "minecraft:golden_carrot", + "minecraft:dandelion" + ] + }, "items/rails": { "name": "rails", "type": "items", @@ -4346,6 +5008,13 @@ "minecraft:cherry_sapling" ] }, + "items/sheep_food": { + "name": "sheep_food", + "type": "items", + "values": [ + "minecraft:wheat" + ] + }, "items/shovels": { "name": "shovels", "type": "items", @@ -4375,6 +5044,19 @@ "minecraft:cherry_sign" ] }, + "items/skulls": { + "name": "skulls", + "type": "items", + "values": [ + "minecraft:player_head", + "minecraft:creeper_head", + "minecraft:zombie_head", + "minecraft:skeleton_skull", + "minecraft:wither_skeleton_skull", + "minecraft:dragon_head", + "minecraft:piglin_head" + ] + }, "items/slabs": { "name": "slabs", "type": "items", @@ -4566,6 +5248,21 @@ "minecraft:cobbled_deepslate" ] }, + "items/strider_food": { + "name": "strider_food", + "type": "items", + "values": [ + "minecraft:warped_fungus" + ] + }, + "items/strider_tempt_items": { + "name": "strider_tempt_items", + "type": "items", + "values": [ + "#minecraft:strider_food", + "minecraft:warped_fungus_on_a_stick" + ] + }, "items/swords": { "name": "swords", "type": "items", @@ -4612,18 +5309,6 @@ "minecraft:black_terracotta" ] }, - "items/tools": { - "name": "tools", - "type": "items", - "values": [ - "#minecraft:swords", - "#minecraft:axes", - "#minecraft:pickaxes", - "#minecraft:shovels", - "#minecraft:hoes", - "minecraft:trident" - ] - }, "items/trapdoors": { "name": "trapdoors", "type": "items", @@ -4674,31 +5359,17 @@ "name": "trimmable_armor", "type": "items", "values": [ - "minecraft:netherite_helmet", - "minecraft:netherite_chestplate", - "minecraft:netherite_leggings", - "minecraft:netherite_boots", - "minecraft:diamond_helmet", - "minecraft:diamond_chestplate", - "minecraft:diamond_leggings", - "minecraft:diamond_boots", - "minecraft:golden_helmet", - "minecraft:golden_chestplate", - "minecraft:golden_leggings", - "minecraft:golden_boots", - "minecraft:iron_helmet", - "minecraft:iron_chestplate", - "minecraft:iron_leggings", - "minecraft:iron_boots", - "minecraft:chainmail_helmet", - "minecraft:chainmail_chestplate", - "minecraft:chainmail_leggings", - "minecraft:chainmail_boots", - "minecraft:leather_helmet", - "minecraft:leather_chestplate", - "minecraft:leather_leggings", - "minecraft:leather_boots", - "minecraft:turtle_helmet" + "#minecraft:foot_armor", + "#minecraft:leg_armor", + "#minecraft:chest_armor", + "#minecraft:head_armor" + ] + }, + "items/turtle_food": { + "name": "turtle_food", + "type": "items", + "values": [ + "minecraft:seagrass" ] }, "items/villager_plantable_seeds": { @@ -4759,6 +5430,13 @@ "minecraft:warped_wart_block" ] }, + "items/wolf_food": { + "name": "wolf_food", + "type": "items", + "values": [ + "#minecraft:meat" + ] + }, "items/wooden_buttons": { "name": "wooden_buttons", "type": "items", diff --git a/Obsidian/Assets/trim_material.json b/Obsidian/Assets/trim_material.json index df596cbc0..dbee39854 100644 --- a/Obsidian/Assets/trim_material.json +++ b/Obsidian/Assets/trim_material.json @@ -5,143 +5,131 @@ "name": "minecraft:amethyst", "id": 0, "element": { - "ingredient": "minecraft:amethyst_shard", "asset_name": "amethyst", - "item_model_index": 1.0, "description": { "color": "#9A5CC6", "translate": "trim_material.minecraft.amethyst" - } + }, + "ingredient": "minecraft:amethyst_shard", + "item_model_index": 1 } }, { "name": "minecraft:copper", "id": 1, "element": { - "ingredient": "minecraft:copper_ingot", "asset_name": "copper", - "item_model_index": 0.5, "description": { - "color": "#B4684", + "color": "#B4684D", "translate": "trim_material.minecraft.copper" - } + }, + "ingredient": "minecraft:copper_ingot", + "item_model_index": 0.5 } }, { "name": "minecraft:diamond", "id": 2, "element": { - "override_armor_materials": { - "diamond": "diamond_darker" - }, - "ingredient": "minecraft:diamond", "asset_name": "diamond", - "item_model_index": 0.8, "description": { "color": "#6EECD2", "translate": "trim_material.minecraft.diamond" - } + }, + "ingredient": "minecraft:diamond", + "item_model_index": 0.8 } }, { "name": "minecraft:emerald", "id": 3, "element": { - "ingredient": "minecraft:emerald", "asset_name": "emerald", - "item_model_index": 0.7, "description": { "color": "#11A036", "translate": "trim_material.minecraft.emerald" - } + }, + "ingredient": "minecraft:emerald", + "item_model_index": 0.7 } }, { "name": "minecraft:gold", "id": 4, "element": { - "override_armor_materials": { - "gold": "gold_darker" - }, - "ingredient": "minecraft:gold_ingot", "asset_name": "gold", - "item_model_index": 0.6, "description": { - "color": "#DEB12", + "color": "#DEB12D", "translate": "trim_material.minecraft.gold" - } + }, + "ingredient": "minecraft:gold_ingot", + "item_model_index": 0.6 } }, { "name": "minecraft:iron", "id": 5, "element": { - "override_armor_materials": { - "iron": "iron_darker" - }, - "ingredient": "minecraft:iron_ingot", "asset_name": "iron", - "item_model_index": 0.2, "description": { "color": "#ECECEC", "translate": "trim_material.minecraft.iron" - } + }, + "ingredient": "minecraft:iron_ingot", + "item_model_index": 0.2 } }, { "name": "minecraft:lapis", "id": 6, "element": { - "ingredient": "minecraft:lapis_lazuli", "asset_name": "lapis", - "item_model_index": 0.9, "description": { "color": "#416E97", "translate": "trim_material.minecraft.lapis" - } + }, + "ingredient": "minecraft:lapis_lazuli", + "item_model_index": 0.9 } }, { "name": "minecraft:netherite", "id": 7, "element": { - "override_armor_materials": { - "netherite": "netherite_darker" - }, - "ingredient": "minecraft:netherite_ingot", "asset_name": "netherite", - "item_model_index": 0.3, "description": { "color": "#625859", "translate": "trim_material.minecraft.netherite" - } + }, + "ingredient": "minecraft:netherite_ingot", + "item_model_index": 0.3 } }, { "name": "minecraft:quartz", "id": 8, "element": { - "ingredient": "minecraft:quartz", "asset_name": "quartz", - "item_model_index": 0.1, "description": { - "color": "#E34C4", + "color": "#E3D4C4", "translate": "trim_material.minecraft.quartz" - } + }, + "ingredient": "minecraft:quartz", + "item_model_index": 0.1 } }, { "name": "minecraft:redstone", "id": 9, "element": { - "ingredient": "minecraft:redstone", "asset_name": "redstone", - "item_model_index": 0.4, "description": { "color": "#971607", "translate": "trim_material.minecraft.redstone" - } + }, + "ingredient": "minecraft:redstone", + "item_model_index": 0.4 } } ] -} \ No newline at end of file +} diff --git a/Obsidian/Assets/trim_pattern.json b/Obsidian/Assets/trim_pattern.json index c00cc348c..77f657e2a 100644 --- a/Obsidian/Assets/trim_pattern.json +++ b/Obsidian/Assets/trim_pattern.json @@ -5,193 +5,193 @@ "name": "minecraft:coast", "id": 0, "element": { - "template_item": "minecraft:coast_armor_trim_smithing_template", + "asset_id": "minecraft:coast", + "decal": false, "description": { "translate": "trim_pattern.minecraft.coast" }, - "asset_id": "minecraft:coast", - "decal": false + "template_item": "minecraft:coast_armor_trim_smithing_template" } }, { "name": "minecraft:dune", "id": 1, "element": { - "template_item": "minecraft:dune_armor_trim_smithing_template", + "asset_id": "minecraft:dune", + "decal": false, "description": { "translate": "trim_pattern.minecraft.dune" }, - "asset_id": "minecraft:dune", - "decal": false + "template_item": "minecraft:dune_armor_trim_smithing_template" } }, { "name": "minecraft:eye", "id": 2, "element": { - "template_item": "minecraft:eye_armor_trim_smithing_template", + "asset_id": "minecraft:eye", + "decal": false, "description": { "translate": "trim_pattern.minecraft.eye" }, - "asset_id": "minecraft:eye", - "decal": false + "template_item": "minecraft:eye_armor_trim_smithing_template" } }, { "name": "minecraft:host", "id": 3, "element": { - "template_item": "minecraft:host_armor_trim_smithing_template", + "asset_id": "minecraft:host", + "decal": false, "description": { "translate": "trim_pattern.minecraft.host" }, - "asset_id": "minecraft:host", - "decal": false + "template_item": "minecraft:host_armor_trim_smithing_template" } }, { "name": "minecraft:raiser", "id": 4, "element": { - "template_item": "minecraft:raiser_armor_trim_smithing_template", + "asset_id": "minecraft:raiser", + "decal": false, "description": { "translate": "trim_pattern.minecraft.raiser" }, - "asset_id": "minecraft:raiser", - "decal": false + "template_item": "minecraft:raiser_armor_trim_smithing_template" } }, { "name": "minecraft:rib", "id": 5, "element": { - "template_item": "minecraft:rib_armor_trim_smithing_template", + "asset_id": "minecraft:rib", + "decal": false, "description": { "translate": "trim_pattern.minecraft.rib" }, - "asset_id": "minecraft:rib", - "decal": false + "template_item": "minecraft:rib_armor_trim_smithing_template" } }, { "name": "minecraft:sentry", "id": 6, "element": { - "template_item": "minecraft:sentry_armor_trim_smithing_template", + "asset_id": "minecraft:sentry", + "decal": false, "description": { "translate": "trim_pattern.minecraft.sentry" }, - "asset_id": "minecraft:sentry", - "decal": false + "template_item": "minecraft:sentry_armor_trim_smithing_template" } }, { "name": "minecraft:shaper", "id": 7, "element": { - "template_item": "minecraft:shaper_armor_trim_smithing_template", + "asset_id": "minecraft:shaper", + "decal": false, "description": { "translate": "trim_pattern.minecraft.shaper" }, - "asset_id": "minecraft:shaper", - "decal": false + "template_item": "minecraft:shaper_armor_trim_smithing_template" } }, { "name": "minecraft:silence", "id": 8, "element": { - "template_item": "minecraft:silence_armor_trim_smithing_template", + "asset_id": "minecraft:silence", + "decal": false, "description": { "translate": "trim_pattern.minecraft.silence" }, - "asset_id": "minecraft:silence", - "decal": false + "template_item": "minecraft:silence_armor_trim_smithing_template" } }, { "name": "minecraft:snout", "id": 9, "element": { - "template_item": "minecraft:snout_armor_trim_smithing_template", + "asset_id": "minecraft:snout", + "decal": false, "description": { "translate": "trim_pattern.minecraft.snout" }, - "asset_id": "minecraft:snout", - "decal": false + "template_item": "minecraft:snout_armor_trim_smithing_template" } }, { "name": "minecraft:spire", "id": 10, "element": { - "template_item": "minecraft:spire_armor_trim_smithing_template", + "asset_id": "minecraft:spire", + "decal": false, "description": { "translate": "trim_pattern.minecraft.spire" }, - "asset_id": "minecraft:spire", - "decal": false + "template_item": "minecraft:spire_armor_trim_smithing_template" } }, { "name": "minecraft:tide", "id": 11, "element": { - "template_item": "minecraft:tide_armor_trim_smithing_template", + "asset_id": "minecraft:tide", + "decal": false, "description": { "translate": "trim_pattern.minecraft.tide" }, - "asset_id": "minecraft:tide", - "decal": false + "template_item": "minecraft:tide_armor_trim_smithing_template" } }, { "name": "minecraft:vex", "id": 12, "element": { - "template_item": "minecraft:vex_armor_trim_smithing_template", + "asset_id": "minecraft:vex", + "decal": false, "description": { "translate": "trim_pattern.minecraft.vex" }, - "asset_id": "minecraft:vex", - "decal": false + "template_item": "minecraft:vex_armor_trim_smithing_template" } }, { "name": "minecraft:ward", "id": 13, "element": { - "template_item": "minecraft:ward_armor_trim_smithing_template", + "asset_id": "minecraft:ward", + "decal": false, "description": { "translate": "trim_pattern.minecraft.ward" }, - "asset_id": "minecraft:ward", - "decal": false + "template_item": "minecraft:ward_armor_trim_smithing_template" } }, { "name": "minecraft:wayfinder", "id": 14, "element": { - "template_item": "minecraft:wayfinder_armor_trim_smithing_template", + "asset_id": "minecraft:wayfinder", + "decal": false, "description": { "translate": "trim_pattern.minecraft.wayfinder" }, - "asset_id": "minecraft:wayfinder", - "decal": false + "template_item": "minecraft:wayfinder_armor_trim_smithing_template" } }, { "name": "minecraft:wild", "id": 15, "element": { - "template_item": "minecraft:wild_armor_trim_smithing_template", + "asset_id": "minecraft:wild", + "decal": false, "description": { "translate": "trim_pattern.minecraft.wild" }, - "asset_id": "minecraft:wild", - "decal": false + "template_item": "minecraft:wild_armor_trim_smithing_template" } } ] -} \ No newline at end of file +} diff --git a/Obsidian/Assets/wolf_variant.json b/Obsidian/Assets/wolf_variant.json new file mode 100644 index 000000000..e9f3a9c9d --- /dev/null +++ b/Obsidian/Assets/wolf_variant.json @@ -0,0 +1,95 @@ +{ + "type": "minecraft:wolf_variant", + "value": [ + { + "name": "minecraft:ashen", + "id": 0, + "element": { + "angry_texture": "minecraft:entity/wolf/wolf_ashen_angry", + "biomes": "minecraft:snowy_taiga", + "tame_texture": "minecraft:entity/wolf/wolf_ashen_tame", + "wild_texture": "minecraft:entity/wolf/wolf_ashen" + } + }, + { + "name": "minecraft:black", + "id": 1, + "element": { + "angry_texture": "minecraft:entity/wolf/wolf_black_angry", + "biomes": "minecraft:old_growth_pine_taiga", + "tame_texture": "minecraft:entity/wolf/wolf_black_tame", + "wild_texture": "minecraft:entity/wolf/wolf_black" + } + }, + { + "name": "minecraft:chestnut", + "id": 2, + "element": { + "angry_texture": "minecraft:entity/wolf/wolf_chestnut_angry", + "biomes": "minecraft:old_growth_spruce_taiga", + "tame_texture": "minecraft:entity/wolf/wolf_chestnut_tame", + "wild_texture": "minecraft:entity/wolf/wolf_chestnut" + } + }, + { + "name": "minecraft:pale", + "id": 3, + "element": { + "angry_texture": "minecraft:entity/wolf/wolf_angry", + "biomes": "minecraft:taiga", + "tame_texture": "minecraft:entity/wolf/wolf_tame", + "wild_texture": "minecraft:entity/wolf/wolf" + } + }, + { + "name": "minecraft:rusty", + "id": 4, + "element": { + "angry_texture": "minecraft:entity/wolf/wolf_rusty_angry", + "biomes": "#minecraft:is_jungle", + "tame_texture": "minecraft:entity/wolf/wolf_rusty_tame", + "wild_texture": "minecraft:entity/wolf/wolf_rusty" + } + }, + { + "name": "minecraft:snowy", + "id": 5, + "element": { + "angry_texture": "minecraft:entity/wolf/wolf_snowy_angry", + "biomes": "minecraft:grove", + "tame_texture": "minecraft:entity/wolf/wolf_snowy_tame", + "wild_texture": "minecraft:entity/wolf/wolf_snowy" + } + }, + { + "name": "minecraft:spotted", + "id": 6, + "element": { + "angry_texture": "minecraft:entity/wolf/wolf_spotted_angry", + "biomes": "#minecraft:is_savanna", + "tame_texture": "minecraft:entity/wolf/wolf_spotted_tame", + "wild_texture": "minecraft:entity/wolf/wolf_spotted" + } + }, + { + "name": "minecraft:striped", + "id": 7, + "element": { + "angry_texture": "minecraft:entity/wolf/wolf_striped_angry", + "biomes": "#minecraft:is_badlands", + "tame_texture": "minecraft:entity/wolf/wolf_striped_tame", + "wild_texture": "minecraft:entity/wolf/wolf_striped" + } + }, + { + "name": "minecraft:woods", + "id": 8, + "element": { + "angry_texture": "minecraft:entity/wolf/wolf_woods_angry", + "biomes": "minecraft:forest", + "tame_texture": "minecraft:entity/wolf/wolf_woods_tame", + "wild_texture": "minecraft:entity/wolf/wolf_woods" + } + } + ] +} diff --git a/Obsidian/Client.cs b/Obsidian/Client.cs index 8e5fc9cd5..de0f0270b 100644 --- a/Obsidian/Client.cs +++ b/Obsidian/Client.cs @@ -269,29 +269,29 @@ public async Task StartConnectionAsync() switch (id) { case 0x00: - { - if (this.server.Configuration.Network.ShouldThrottle) { - string ip = ((IPEndPoint)connectionContext.RemoteEndPoint!).Address.ToString(); - - if (Server.throttler.TryGetValue(ip, out var timeLeft)) + if (this.server.Configuration.Network.ShouldThrottle) { - if (DateTimeOffset.UtcNow < timeLeft) + string ip = ((IPEndPoint)connectionContext.RemoteEndPoint!).Address.ToString(); + + if (Server.throttler.TryGetValue(ip, out var timeLeft)) { - this.Logger.LogDebug("{ip} has been throttled for reconnecting too fast.", ip); - await this.DisconnectAsync("Connection Throttled! Please wait before reconnecting."); - break; + if (DateTimeOffset.UtcNow < timeLeft) + { + this.Logger.LogDebug("{ip} has been throttled for reconnecting too fast.", ip); + await this.DisconnectAsync("Connection Throttled! Please wait before reconnecting."); + break; + } + } + else + { + Server.throttler.TryAdd(ip, DateTimeOffset.UtcNow.AddMilliseconds(this.server.Configuration.Network.ConnectionThrottle)); } } - else - { - Server.throttler.TryAdd(ip, DateTimeOffset.UtcNow.AddMilliseconds(this.server.Configuration.Network.ConnectionThrottle)); - } - } - await HandleLoginStartAsync(data); - break; - } + await HandleLoginStartAsync(data); + break; + } case 0x01: await HandleEncryptionResponseAsync(data); break; @@ -352,7 +352,15 @@ public async Task StartConnectionAsync() private void Configure() { - this.SendPacket(RegistryDataPacket.Default); + //This is very inconvenient + this.SendPacket(new RegistryDataPacket(CodecRegistry.Biomes.CodecKey, CodecRegistry.Biomes.All.ToDictionary(x => x.Key, x => (ICodec)x.Value))); + this.SendPacket(new RegistryDataPacket(CodecRegistry.Dimensions.CodecKey, CodecRegistry.Dimensions.All.ToDictionary(x => x.Key, x => (ICodec)x.Value))); + this.SendPacket(new RegistryDataPacket(CodecRegistry.ChatType.CodecKey, CodecRegistry.ChatType.All.ToDictionary(x => x.Key, x => (ICodec)x.Value))); + this.SendPacket(new RegistryDataPacket(CodecRegistry.DamageTypes.CodecKey, CodecRegistry.DamageTypes.All.ToDictionary(x => x.Key, x => (ICodec)x.Value))); + this.SendPacket(new RegistryDataPacket(CodecRegistry.TrimPatterns.CodecKey, CodecRegistry.TrimPatterns.All.ToDictionary(x => x.Key, x => (ICodec)x.Value))); + this.SendPacket(new RegistryDataPacket(CodecRegistry.TrimMaterials.CodecKey, CodecRegistry.TrimMaterials.All.ToDictionary(x => x.Key, x => (ICodec)x.Value))); + this.SendPacket(new RegistryDataPacket(CodecRegistry.WolfVariant.CodecKey, CodecRegistry.WolfVariant.All.ToDictionary(x => x.Key, x => (ICodec)x.Value))); + this.SendPacket(UpdateTagsPacket.FromRegistry); this.SendPacket(FinishConfigurationPacket.Default); @@ -442,7 +450,8 @@ private async Task HandleLoginStartAsync(byte[] data) SendPacket(new EncryptionRequest { PublicKey = publicKey, - VerifyToken = randomToken + VerifyToken = randomToken, + ShouldAuthenticate = true//I don't know how we're supposed to use this }); } else if (this.server.Configuration.Whitelist && !this.server.WhitelistConfiguration.CurrentValue.WhitelistedPlayers.Any(x => x.Name == username)) @@ -532,7 +541,7 @@ await QueuePacketAsync(new LoginPacket EntityId = id, Gamemode = Player.Gamemode, DimensionNames = CodecRegistry.Dimensions.All.Keys.ToList(), - DimensionType = codec.Name, + DimensionType = codec.Id, DimensionName = codec.Name, HashedSeed = 0, ReducedDebugInfo = false, @@ -631,7 +640,7 @@ internal void SendKeepAlive(DateTimeOffset time) // now that all is fine and dandy, we'd be fine to enqueue the new keepalive SendPacket(new KeepAlivePacket(keepAliveId) { - Id = this.State == ClientState.Configuration ? 0x03 : 0x24 + Id = this.State == ClientState.Configuration ? 0x03 : 0x26 }); missedKeepAlives.Add(keepAliveId); diff --git a/Obsidian/Entities/Living.cs b/Obsidian/Entities/Living.cs index 0c741fd5c..8c8eeef76 100644 --- a/Obsidian/Entities/Living.cs +++ b/Obsidian/Entities/Living.cs @@ -59,24 +59,15 @@ public void ClearPotionEffects() } } - public void AddPotionEffect(PotionEffect potion, int duration, byte amplifier = 0, bool showParticles = true, - bool showIcon = true, bool isAmbient = false) + public void AddPotionEffect(PotionEffect potion, int duration, byte amplifier = 0, EntityEffect effect = EntityEffect.None) { - byte flags = 0; - if (isAmbient) - flags |= 0x01; - if (showParticles) - flags |= 0x02; - if (showIcon) - flags |= 0x04; - this.PacketBroadcaster.QueuePacketToWorld(this.World, new EntityEffectPacket(EntityId, (int)potion, duration) { Amplifier = amplifier, - Flags = flags + Flags = effect }); - var data = new PotionEffectData(duration, amplifier, flags); + var data = new PotionEffectData(duration, amplifier, (byte)effect); activePotionEffects.AddOrUpdate(potion, _ => data, (_, _) => data); } diff --git a/Obsidian/Net/Actions/PlayerInfo/PlayerInfoAction.cs b/Obsidian/Net/Actions/PlayerInfo/PlayerInfoAction.cs index 6e8611cec..bac4f7789 100644 --- a/Obsidian/Net/Actions/PlayerInfo/PlayerInfoAction.cs +++ b/Obsidian/Net/Actions/PlayerInfo/PlayerInfoAction.cs @@ -1,12 +1,11 @@ namespace Obsidian.Net.Actions.PlayerInfo; -public enum PlayerInfoAction : int +[Flags] +public enum PlayerInfoAction : sbyte { - AddPlayer, - - InitializeChat, - - UpdateGamemode, - UpdateListed, - UpdateLatency, - UpdateDisplayName + AddPlayer = 0x01, + InitChat = 0x02, + UpdateGamemode = 0x04, + UpdateListed = 0x08, + UpdateLatency = 0x10, + UpdateDisplayName = 0x20 } diff --git a/Obsidian/Net/ChatMessageTypes/PlayerChatMessageNetworkTarget.cs b/Obsidian/Net/ChatMessageTypes/PlayerChatMessageFormatting.cs similarity index 65% rename from Obsidian/Net/ChatMessageTypes/PlayerChatMessageNetworkTarget.cs rename to Obsidian/Net/ChatMessageTypes/PlayerChatMessageFormatting.cs index d594f062e..bbedc846b 100644 --- a/Obsidian/Net/ChatMessageTypes/PlayerChatMessageNetworkTarget.cs +++ b/Obsidian/Net/ChatMessageTypes/PlayerChatMessageFormatting.cs @@ -1,9 +1,9 @@ namespace Obsidian.Net.ChatMessageTypes; -public sealed class PlayerChatMessageNetworkTarget +public sealed class PlayerChatMessageFormatting { public required int ChatType { get; init; } - public required ChatMessage NetworkName { get; init; } + public required ChatMessage SenderName { get; init; } public bool TargetNamePresent => this.TargetName != null; diff --git a/Obsidian/Net/ClientHandler.cs b/Obsidian/Net/ClientHandler.cs index fba6ef58d..a908d123d 100644 --- a/Obsidian/Net/ClientHandler.cs +++ b/Obsidian/Net/ClientHandler.cs @@ -42,9 +42,9 @@ public void RegisterHandlers() //Packets.TryAdd(0x0E, InteractEntity); //Packets.TryAdd(0x0F, GenerateStructure); //Packets.TryAdd(0x11, LockDifficulty); - Packets.TryAdd(0x17, new SetPlayerPositionPacket()); - Packets.TryAdd(0x18, new SetPlayerPositionAndRotationPacket()); - Packets.TryAdd(0x19, new SetPlayerRotationPacket()); + Packets.TryAdd(0x1A, new SetPlayerPositionPacket()); + Packets.TryAdd(0x1B, new SetPlayerPositionAndRotationPacket()); + Packets.TryAdd(0x1C, new SetPlayerRotationPacket()); Packets.TryAdd(0x20, new PlayerAbilitiesPacket(false)); //Packets.TryAdd(0x15, PlayerMovement); //Packets.TryAdd(0x16, VehicleMove); @@ -62,7 +62,7 @@ public void RegisterHandlers() //Packets.TryAdd(0x22, AdvancementTab); //Packets.TryAdd(0x23, SelectTrade); //Packets.TryAdd(0x24, SetBeaconEffect); - Packets.TryAdd(0x2C, new SetHeldItemPacket(false)); + Packets.TryAdd(0x2F, new SetHeldItemPacket(false)); //Packets.TryAdd(0x26, UpdateCommandBlock); //Packets.TryAdd(0x27, UpdateCommandBlockMinecart); //Packets.TryAdd(0x28, new CreativeInventoryAction()); ! @@ -72,8 +72,8 @@ public void RegisterHandlers() //Packets.TryAdd(0x2C, new Animation()); //Packets.TryAdd(0x2D, Spectate); //Packets.TryAdd(0x2E, new PlayerBlockPlacement()); ! - Packets.TryAdd(0x35, new UseItemOnPacket()); - Packets.TryAdd(0x36, new UseItemPacket()); + Packets.TryAdd(0x38, new UseItemOnPacket()); + Packets.TryAdd(0x39, new UseItemPacket()); } public async Task HandleConfigurationPackets(int id, byte[] data, Client client) @@ -83,18 +83,20 @@ public async Task HandleConfigurationPackets(int id, byte[] data, Client client) case 0x00: await HandleFromPoolAsync(data, client); break; - case 0x01: - await HandleFromPoolAsync(data, client); + case 0x01://Cookies break; case 0x02: - await HandleFromPoolAsync(data, client); + await HandleFromPoolAsync(data, client); break; case 0x03: + await HandleFromPoolAsync(data, client); + break; + case 0x04: await HandleFromPoolAsync(data, client); break; - case 0x04://pong useless + case 0x05://pong useless break; - case 0x05: + case 0x06: await HandleFromPoolAsync(data, client); break; default: @@ -127,80 +129,80 @@ public async Task HandlePlayPackets(int id, byte[] data, Client client) case 0x04: await HandleFromPoolAsync(data, client); break; - case 0x05: + case 0x06: await HandleFromPoolAsync(data, client); break; - case 0x06: + case 0x07: await HandleFromPoolAsync(data, client); break; - case 0x07: + case 0x08: await HandleFromPoolAsync(data, client); break; - case 0x08: + case 0x09: await HandleFromPoolAsync(data, client); break; - case 0x09: + case 0x0A: await HandleFromPoolAsync(data, client); break; - case 0x0B: + case 0x0C: await HandleFromPoolAsync(data, client); break; - case 0x0C: + case 0x0D: await HandleFromPoolAsync(data, client); break; - case 0x0D: + case 0x0E: await HandleFromPoolAsync(data, client); break; - case 0x0E: + case 0x0F: await HandleFromPoolAsync(data, client); break; - case 0x0F: + case 0x12: await HandleFromPoolAsync(data, client); break; - case 0x13: + case 0x16: await HandleFromPoolAsync(data, client); break; - case 0x15: + case 0x18: await HandleFromPoolAsync(data, client); break; - case 0x1D: + case 0x20: await HandleFromPoolAsync(data, client); break; - case 0x1F: + case 0x22: await HandleFromPoolAsync(data, client); break; - case 0x21: + case 0x24: await HandleFromPoolAsync(data, client); break; - case 0x22: + case 0x25: await HandleFromPoolAsync(data, client); break; - case 0x26: + case 0x29: await HandleFromPoolAsync(data, client); break; - case 0x27: + case 0x2A: await HandleFromPoolAsync(data, client); break; - case 0x2F: + case 0x32: await HandleFromPoolAsync(data, client); break; - case 0x33: + case 0x36: await HandleFromPoolAsync(data, client); break; - case 0x35: + case 0x38: await HandleFromPoolAsync(data, client); break; - case 0x36: + case 0x39: await HandleFromPoolAsync(data, client); break; default: diff --git a/Obsidian/Net/MinecraftStream.Writing.cs b/Obsidian/Net/MinecraftStream.Writing.cs index 947679867..1c6ea68f1 100644 --- a/Obsidian/Net/MinecraftStream.Writing.cs +++ b/Obsidian/Net/MinecraftStream.Writing.cs @@ -2,7 +2,13 @@ using Obsidian.API.Advancements; using Obsidian.API.Crafting; using Obsidian.API.Inventory; +using Obsidian.API.Registry.Codecs.ArmorTrims.TrimMaterial; +using Obsidian.API.Registry.Codecs.ArmorTrims.TrimPattern; +using Obsidian.API.Registry.Codecs.Biomes; +using Obsidian.API.Registry.Codecs.Chat; +using Obsidian.API.Registry.Codecs.DamageTypes; using Obsidian.API.Registry.Codecs.Dimensions; +using Obsidian.API.Registry.Codecs.WolfVariant; using Obsidian.API.Utilities; using Obsidian.Commands; using Obsidian.Entities; @@ -685,12 +691,12 @@ public void WriteCommandNode(CommandNode value) public void WriteItemStack(ItemStack value) { value ??= new ItemStack(0, 0) { Present = true }; - WriteBoolean(value.Present); - if (value.Present) - { - var item = value.AsItem(); - WriteVarInt(item.Id); + var item = value.AsItem(); + WriteVarInt(item.Id); + + if (item.Id != 0) + { WriteByte((sbyte)value.Count); NbtWriter writer = new(this, true); @@ -779,126 +785,24 @@ public void WriteVelocity(Velocity value) } [WriteMethod] - public void WriteMixedCodec(MixedCodec _) - { - var writer = new NbtWriter(this, true); - - var list = new NbtList(NbtTagType.Compound, "value"); - - foreach (var (_, codec) in CodecRegistry.Dimensions.All) - codec.Write(list); - - var dimensions = new NbtCompound(CodecRegistry.Dimensions.CodecKey) - { - new NbtTag("type", CodecRegistry.Dimensions.CodecKey), - - list - }; - - writer.WriteTag(dimensions); - - this.WriteBiomeCodec(writer); - this.WriteChatCodec(writer); - this.WriteDamageTypeCodec(writer); - this.WriteTrimPatternCodec(writer); - this.WriteTrimMaterialCodec(writer); - - writer.EndCompound(); - writer.TryFinish(); - } - - private void WriteTrimPatternCodec(NbtWriter writer) - { - var trimPatterns = new NbtList(NbtTagType.Compound, "value"); - - foreach (var (_, trimPattern) in CodecRegistry.TrimPatterns.All) - trimPattern.Write(trimPatterns); - - var trimPatternsCompound = new NbtCompound(CodecRegistry.TrimPatterns.CodecKey) - { - new NbtTag("type", CodecRegistry.TrimPatterns.CodecKey), - - trimPatterns - }; - - writer.WriteTag(trimPatternsCompound); - } - - private void WriteTrimMaterialCodec(NbtWriter writer) - { - var trimMaterials = new NbtList(NbtTagType.Compound, "value"); - - foreach (var (_, trimMaterial) in CodecRegistry.TrimMaterials.All) - trimMaterial.Write(trimMaterials); - - var trimMaterialsCompound = new NbtCompound(CodecRegistry.TrimMaterials.CodecKey) - { - new NbtTag("type", CodecRegistry.TrimMaterials.CodecKey), - - trimMaterials - }; - - writer.WriteTag(trimMaterialsCompound); - } - - - private void WriteDamageTypeCodec(NbtWriter writer) - { - var damageTypes = new NbtList(NbtTagType.Compound, "value"); - - foreach (var (_, damageType) in CodecRegistry.DamageTypes.All) - damageType.Write(damageTypes); - - var damageTypesCompound = new NbtCompound(CodecRegistry.DamageTypes.CodecKey) - { - new NbtTag("type", CodecRegistry.DamageTypes.CodecKey), - - damageTypes - }; - - writer.WriteTag(damageTypesCompound); - } - - private void WriteChatCodec(NbtWriter writer) - { - var chatTypes = new NbtList(NbtTagType.Compound, "value"); - - foreach (var (_, chatType) in CodecRegistry.ChatType.All) - chatType.Write(chatTypes); - - var chatTypesCompound = new NbtCompound(CodecRegistry.ChatType.CodecKey) - { - new NbtTag("type", CodecRegistry.ChatType.CodecKey), - - chatTypes - }; - - writer.WriteTag(chatTypesCompound); - } - - private void WriteBiomeCodec(NbtWriter writer) - { - var biomes = new NbtList(NbtTagType.Compound, "value"); - - foreach (var (_, biome) in CodecRegistry.Biomes.All) - biome.Write(biomes); - - var biomeCompound = new NbtCompound(CodecRegistry.Biomes.CodecKey) - { - new NbtTag("type", CodecRegistry.Biomes.CodecKey), - - biomes - }; - - writer.WriteTag(biomeCompound); - } - - [WriteMethod] - public void WriteDimensionCodec(DimensionCodec value) + public void WriteCodec(ICodec codec) { var writer = new NbtWriter(this, true); - value.WriteElement(writer); + if (codec is DimensionCodec dim) + dim.WriteElement(writer); + else if (codec is BiomeCodec biome) + biome.WriteElement(writer); + else if (codec is ChatCodec chat) + chat.WriteElement(writer); + else if (codec is TrimPatternCodec trimPattern) + trimPattern.WriteElement(writer); + else if (codec is TrimMaterialCodec trimMaterial) + trimMaterial.WriteElement(writer); + else if (codec is DamageTypeCodec damageType) + damageType.WriteElement(writer); + else if (codec is WolfVariantCodec wolfVariant) + wolfVariant.WriteElement(writer); writer.EndCompound(); writer.TryFinish(); diff --git a/Obsidian/Net/MixedCodec.cs b/Obsidian/Net/MixedCodec.cs deleted file mode 100644 index 6651c5dd5..000000000 --- a/Obsidian/Net/MixedCodec.cs +++ /dev/null @@ -1,3 +0,0 @@ -namespace Obsidian.Net; - -public sealed class MixedCodec { } diff --git a/Obsidian/Net/Packets/ClientInformationPacket.cs b/Obsidian/Net/Packets/ClientInformationPacket.cs index 319dc1217..b3a19b0e5 100644 --- a/Obsidian/Net/Packets/ClientInformationPacket.cs +++ b/Obsidian/Net/Packets/ClientInformationPacket.cs @@ -28,7 +28,7 @@ public sealed partial class ClientInformationPacket : IServerboundPacket [Field(7)] public bool AllowServerListings { get; private set; } - //0x09 for play state + //0x0A for play state public int Id { get; init; } = 0x00; public async ValueTask HandleAsync(Server server, Player player) diff --git a/Obsidian/Net/Packets/Configuration/Clientbound/RegistryDataPacket.cs b/Obsidian/Net/Packets/Configuration/Clientbound/RegistryDataPacket.cs index 08b6af88e..8f31c959b 100644 --- a/Obsidian/Net/Packets/Configuration/Clientbound/RegistryDataPacket.cs +++ b/Obsidian/Net/Packets/Configuration/Clientbound/RegistryDataPacket.cs @@ -1,12 +1,33 @@ -using Obsidian.Serialization.Attributes; - -namespace Obsidian.Net.Packets.Configuration.Clientbound; -public sealed partial class RegistryDataPacket : IClientboundPacket +namespace Obsidian.Net.Packets.Configuration.Clientbound; +public sealed partial class RegistryDataPacket(string registryId, IDictionary codecs) : IClientboundPacket { - public static RegistryDataPacket Default { get; } = new(); + public int Id => 0x07; + + public string RegistryId { get; } = registryId; + public IDictionary Codecs { get; } = codecs; + + public void Serialize(MinecraftStream stream) + { + using var packetStream = new MinecraftStream(); + + packetStream.WriteString(this.RegistryId); + + packetStream.WriteVarInt(this.Codecs.Count); + + foreach(var (key, codec) in this.Codecs) + { + packetStream.WriteString(key); - [Field(0)] - public MixedCodec Codecs { get; init; } = new(); + packetStream.WriteBoolean(true); - public int Id => 0x05; + packetStream.WriteCodec(codec); + } + + stream.Lock.Wait(); + stream.WriteVarInt(Id.GetVarIntLength() + (int)packetStream.Length); + stream.WriteVarInt(Id); + packetStream.Position = 0; + packetStream.CopyTo(stream); + stream.Lock.Release(); + } } diff --git a/Obsidian/Net/Packets/Configuration/FinishConfigurationPacket.cs b/Obsidian/Net/Packets/Configuration/FinishConfigurationPacket.cs index c74f5e1a9..a85cfa093 100644 --- a/Obsidian/Net/Packets/Configuration/FinishConfigurationPacket.cs +++ b/Obsidian/Net/Packets/Configuration/FinishConfigurationPacket.cs @@ -6,7 +6,7 @@ public sealed partial class FinishConfigurationPacket : IServerboundPacket, ICli { public static FinishConfigurationPacket Default { get; } = new(); - public int Id => 0x02; + public int Id => 0x03; //TODO move connect logic into here public async ValueTask HandleAsync(Server server, Player player) diff --git a/Obsidian/Net/Packets/DisconnectPacket.cs b/Obsidian/Net/Packets/DisconnectPacket.cs index e6d5979e5..77cd287db 100644 --- a/Obsidian/Net/Packets/DisconnectPacket.cs +++ b/Obsidian/Net/Packets/DisconnectPacket.cs @@ -18,7 +18,7 @@ public partial class DisconnectPacket : IClientboundPacket public DisconnectPacket(ChatMessage reason, ClientState state) { - Id = state == ClientState.Configuration ? 0x01 : state == ClientState.Play ? 0x1B : 0x00; + Id = state == ClientState.Configuration ? 0x01 : state == ClientState.Play ? 0x1D : 0x00; Reason = reason; ReasonJson = reason.ToString(Globals.JsonOptions); diff --git a/Obsidian/Net/Packets/Login/EncryptionRequest.cs b/Obsidian/Net/Packets/Login/EncryptionRequest.cs index eacc39cb8..a50744f7d 100644 --- a/Obsidian/Net/Packets/Login/EncryptionRequest.cs +++ b/Obsidian/Net/Packets/Login/EncryptionRequest.cs @@ -19,5 +19,8 @@ public partial class EncryptionRequest : IClientboundPacket [Field(4)] public required byte[] VerifyToken { get; init; } + [Field(5)] + public required bool ShouldAuthenticate { get; init; } + public int Id => 0x01; } diff --git a/Obsidian/Net/Packets/Login/LoginSuccess.cs b/Obsidian/Net/Packets/Login/LoginSuccess.cs index 6df9ff1a7..e6f4e5351 100644 --- a/Obsidian/Net/Packets/Login/LoginSuccess.cs +++ b/Obsidian/Net/Packets/Login/LoginSuccess.cs @@ -2,22 +2,20 @@ namespace Obsidian.Net.Packets.Login; -public partial class LoginSuccess : IClientboundPacket +public partial class LoginSuccess(Guid uuid, string username) : IClientboundPacket { [Field(0)] - public Guid UUID { get; } + public Guid UUID { get; } = uuid; [Field(1)] - public string Username { get; } + public string Username { get; } = username; [Field(3)] public List SkinProperties { get; init; } = new(); - public int Id => 0x02; + [Field(4)] + [Obsolete] + public bool StrictErrorHandling { get; init; } - public LoginSuccess(Guid uuid, string username) - { - UUID = uuid; - Username = username; - } + public int Id => 0x02; } diff --git a/Obsidian/Net/Packets/Login/PluginRequestPacket.cs b/Obsidian/Net/Packets/Login/PluginRequestPacket.cs new file mode 100644 index 000000000..a79e9ccc2 --- /dev/null +++ b/Obsidian/Net/Packets/Login/PluginRequestPacket.cs @@ -0,0 +1,18 @@ +using Obsidian.Entities; +using Obsidian.Serialization.Attributes; + +namespace Obsidian.Net.Packets.Login; +public sealed partial class PluginRequestPacket : IClientboundPacket +{ + [Field(0)] + [VarLength] + public required int MessageID { get; init; } + + [Field(1)] + public required string Channel { get; init; } + + [Field(2)] + public required byte[] Data { get; init; } + + public int Id => 0x04; +} diff --git a/Obsidian/Net/Packets/Login/PluginResponsePacket.cs b/Obsidian/Net/Packets/Login/PluginResponsePacket.cs new file mode 100644 index 000000000..0bf620265 --- /dev/null +++ b/Obsidian/Net/Packets/Login/PluginResponsePacket.cs @@ -0,0 +1,21 @@ +using Obsidian.Entities; +using Obsidian.Serialization.Attributes; + +namespace Obsidian.Net.Packets.Login; +public sealed partial class PluginResponsePacket : IServerboundPacket +{ + [Field(0)] + [VarLength] + public int MessageID { get; private set; } + + [Field(1)] + public bool Successful { get; private set; } + + [Field(2)] + [Condition("Successful")] + public byte[] Data { get; private set; } + + public int Id => 0x02; + + public ValueTask HandleAsync(Server server, Player player) => throw new NotImplementedException(); +} diff --git a/Obsidian/Net/Packets/Play/Clientbound/BlockEntityDataPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/BlockEntityDataPacket.cs index 49ede77e5..db9390fd6 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/BlockEntityDataPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/BlockEntityDataPacket.cs @@ -8,8 +8,8 @@ public partial class BlockEntityDataPacket : IClientboundPacket [Field(0)] public Vector Position { get; init; } - [Field(1), ActualType(typeof(int)), VarLength] - private BlockEntityActionType Action { get; init; } + [Field(1), VarLength] + private int Type { get; init; } [Field(2)] public INbtTag NBTData { get; init; } @@ -17,21 +17,21 @@ public partial class BlockEntityDataPacket : IClientboundPacket public int Id => 0x07; } -// https://wiki.vg/Protocol#Block_Entity_Data -public enum BlockEntityActionType : int -{ - SetSpawnerData = 1, - SetCommandBlockText = 2, - SetBeaconData = 3, - SetMobHeadRotationSkin = 4, - DeclareConduit = 5, - SetBannerPatterns = 6, - SetStructureTileData = 7, - SetEndGatewayDestination = 8, - SetSignText = 9, - Unused = 10, - DeclareBed = 11, - SetJigsawBlockData = 12, - SetCampfireItems = 13, - SetBeehiveInfo = 14 -} +//// https://wiki.vg/Protocol#Block_Entity_Data +//public enum BlockEntityActionType : int +//{ +// SetSpawnerData = 1, +// SetCommandBlockText = 2, +// SetBeaconData = 3, +// SetMobHeadRotationSkin = 4, +// DeclareConduit = 5, +// SetBannerPatterns = 6, +// SetStructureTileData = 7, +// SetEndGatewayDestination = 8, +// SetSignText = 9, +// Unused = 10, +// DeclareBed = 11, +// SetJigsawBlockData = 12, +// SetCampfireItems = 13, +// SetBeehiveInfo = 14 +//} diff --git a/Obsidian/Net/Packets/Play/Clientbound/ChunkDataAndUpdateLightPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/ChunkDataAndUpdateLightPacket.cs index 167e40240..f1a22da8d 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/ChunkDataAndUpdateLightPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/ChunkDataAndUpdateLightPacket.cs @@ -8,7 +8,7 @@ public partial class ChunkDataAndUpdateLightPacket : IClientboundPacket { public Chunk Chunk { get; } - public int Id => 0x25; + public int Id => 0x27; public ChunkDataAndUpdateLightPacket(Chunk chunk) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/DeleteMessagePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/DeleteMessagePacket.cs index 911c2e335..1c91428a0 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/DeleteMessagePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/DeleteMessagePacket.cs @@ -9,5 +9,5 @@ public sealed partial class DeleteMessagePacket : IClientboundPacket [Field(1)] public byte[] Signature { get; init; } - public int Id => 0x1A; + public int Id => 0x1C; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/DisguisedChatMessage.cs b/Obsidian/Net/Packets/Play/Clientbound/DisguisedChatMessage.cs index 30444f98b..d649cae55 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/DisguisedChatMessage.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/DisguisedChatMessage.cs @@ -10,13 +10,11 @@ public sealed partial class DisguisedChatMessage : IClientboundPacket public int ChatType { get; init; } [Field(2)] - public ChatMessage ChatTypeName { get; init; } - - [Field(3)] public bool HasTargetName { get; init; } - [Field(4)] + [Field(3)] + [Condition("HasTargetName")] public ChatMessage TargetName { get; init; } - public int Id => 0x1C; + public int Id => 0x1E; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/DisplayObjectivePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/DisplayObjectivePacket.cs index b6e02fc9a..88393940f 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 => 0x55; + public int Id => 0x57; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/EntityEffectPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/EntityEffectPacket.cs index 25cf07dcc..3af30014f 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/EntityEffectPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/EntityEffectPacket.cs @@ -3,35 +3,23 @@ namespace Obsidian.Net.Packets.Play.Clientbound; -public partial class EntityEffectPacket : IClientboundPacket +public partial class EntityEffectPacket(int entityId, int effectId, int duration) : IClientboundPacket { [Field(0), VarLength] - public int EntityId { get; init; } + public int EntityId { get; init; } = entityId; [Field(1), VarLength] - public int EffectId { get; init; } + public int EffectId { get; init; } = effectId; - [Field(2)] - public byte Amplifier { get; init; } + [Field(2), VarLength] + public int Amplifier { get; init; } [Field(3), VarLength] - public int Duration { get; init; } + public int Duration { get; init; } = duration; - [Field(4)] - public byte Flags { get; init; } + [Field(4), ActualType(typeof(sbyte))] + public EntityEffect Flags { get; init; } - [Field(5)] - public bool HasFactorData { get; init; } - - [Field(6), Condition("HasFactorData")] - public NbtCompound FactorCodec { get; init; } - - public int Id => 0x72; - - public EntityEffectPacket(int entityId, int effectId, int duration) - { - EntityId = entityId; - EffectId = effectId; - Duration = duration; - } + public int Id => 0x76; } + diff --git a/Obsidian/Net/Packets/Play/Clientbound/EntitySoundEffectPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/EntitySoundEffectPacket.cs index 56d19e936..e5632669e 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 => 0x65; + public int Id => 0x67; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/ExplosionPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/ExplosionPacket.cs index 4700e4258..7cf9b1216 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/ExplosionPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/ExplosionPacket.cs @@ -36,7 +36,7 @@ public partial class ExplosionPacket : IClientboundPacket [Field(9)] public required SoundEffect ExplosionSound { get; init; } - public int Id => 0x1E; + public int Id => 0x20; } public readonly struct ExplosionRecord diff --git a/Obsidian/Net/Packets/Play/Clientbound/GameEventPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/GameEventPacket.cs index c0cfabaa0..2481eaaf2 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/GameEventPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/GameEventPacket.cs @@ -10,7 +10,7 @@ public partial class GameEventPacket : IClientboundPacket [Field(1)] public float Value { get; } - public int Id => 0x20; + public int Id => 0x22; public GameEventPacket(ChangeGameStateReason reason) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/LoginPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/LoginPacket.cs index 6cc691841..e9ac46fca 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/LoginPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/LoginPacket.cs @@ -31,8 +31,8 @@ public partial class LoginPacket : IClientboundPacket [Field(8)] public bool DoLimitedCrafting { get; init; } = false; - [Field(9)] - public string DimensionType { get; init; } + [Field(9), VarLength] + public int DimensionType { get; init; } [Field(10)] public string DimensionName { get; init; } @@ -64,5 +64,8 @@ public partial class LoginPacket : IClientboundPacket [Field(19), VarLength] public int PortalCooldown { get; init; } - public int Id => 0x29; + [Field(20)] + public bool EnforcesSecureChat { get; init; } + + public int Id => 0x2B; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/LookAtPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/LookAtPacket.cs index 3e45c5a82..8941eff39 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/LookAtPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/LookAtPacket.cs @@ -19,7 +19,7 @@ public partial class LookAtPacket : IClientboundPacket [Field(4), VarLength, ActualType(typeof(int)), Condition(nameof(IsEntity))] public AimType AimEntity { get; set; } - public int Id => 0x3D; + public int Id => 0x3F; } public enum AimType : int diff --git a/Obsidian/Net/Packets/Play/Clientbound/OpenBookPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/OpenBookPacket.cs index 231ea63aa..a72c80a6c 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/OpenBookPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/OpenBookPacket.cs @@ -7,5 +7,5 @@ public partial class OpenBookPacket : IClientboundPacket [Field(0), ActualType(typeof(int)), VarLength] public Hand Hand { get; set; } - public int Id => 0x30; + public int Id => 0x32; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/OpenScreenPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/OpenScreenPacket.cs index 29217f66b..40952353a 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/OpenScreenPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/OpenScreenPacket.cs @@ -13,7 +13,7 @@ public partial class OpenScreenPacket : IClientboundPacket [Field(2)] public ChatMessage Title { get; } - public int Id => 0x31; + public int Id => 0x33; public OpenScreenPacket(BaseContainer inventory, int windowId) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/ParticlePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/ParticlePacket.cs index 9ae13ace4..5630dd4b3 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/ParticlePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/ParticlePacket.cs @@ -28,5 +28,5 @@ public partial class ParticlePacket : IClientboundPacket [Field(8)] public ParticleData Data { get; init; } - public int Id => 0x27; + public int Id => 0x29; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/PickupItemPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/PickupItemPacket.cs index c6addf064..d5193fcf8 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 => 0x6C; + public int Id => 0x6F; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/PlaceGhostRecipePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/PlaceGhostRecipePacket.cs index a2201bfce..d876725f4 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/PlaceGhostRecipePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/PlaceGhostRecipePacket.cs @@ -10,7 +10,7 @@ public partial class PlaceGhostRecipePacket : IClientboundPacket [Field(1)] public string RecipeId { get; } - public int Id => 0x35; + public int Id => 0x37; public PlaceGhostRecipePacket(sbyte windowId, string recipeId) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/PlayerAbilitiesPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/PlayerAbilitiesPacket.cs index 211f133ee..3728a9f7d 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/PlayerAbilitiesPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/PlayerAbilitiesPacket.cs @@ -1,9 +1,8 @@ -using Obsidian.API._Types; -using Obsidian.Entities; +using Obsidian.Entities; namespace Obsidian.Net.Packets.Play.Clientbound; -public class PlayerAbilitiesPacket : IClientboundPacket, IServerboundPacket +public class PlayerAbilitiesPacket(bool toClient) : IClientboundPacket, IServerboundPacket { public PlayerAbility Abilities { get; set; } = PlayerAbility.None; @@ -11,12 +10,7 @@ public class PlayerAbilitiesPacket : IClientboundPacket, IServerboundPacket public float FieldOfViewModifier { get; set; } = 0.1F; - public int Id { get; } - - public PlayerAbilitiesPacket(bool toClient) - { - Id = toClient ? 0x36 : 0x20; - } + public int Id { get; } = toClient ? 0x38 : 0x20; public void Serialize(MinecraftStream stream) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/PlayerChatMessagePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/PlayerChatMessagePacket.cs index 259249a03..4ab83dd8b 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/PlayerChatMessagePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/PlayerChatMessagePacket.cs @@ -16,9 +16,12 @@ public partial class PlayerChatMessagePacket : IClientboundPacket public required List PreviousMessages { get; init; } [Field(3)] - public required PlayerChatMessageNetworkTarget NetworkTarget { get; init; } + public required object Other { get; init; } - public int Id => 0x37; + [Field(4)] + public required PlayerChatMessageFormatting ChatFormatting { get; init; } + + public int Id => 0x39; public void Serialize(MinecraftStream stream) { @@ -42,14 +45,14 @@ public void Serialize(MinecraftStream stream) private void WriteNetworkTarget(MinecraftStream stream) { - stream.WriteVarInt(this.NetworkTarget.ChatType); + stream.WriteVarInt(this.ChatFormatting.ChatType); - stream.WriteChat(this.NetworkTarget.NetworkName); + stream.WriteChat(this.ChatFormatting.SenderName); - stream.WriteBoolean(this.NetworkTarget.TargetNamePresent); + stream.WriteBoolean(this.ChatFormatting.TargetNamePresent); - if (this.NetworkTarget.TargetNamePresent) - stream.WriteChat(this.NetworkTarget.TargetName); + if (this.ChatFormatting.TargetNamePresent) + stream.WriteChat(this.ChatFormatting.TargetName); } private void WriteBody(MinecraftStream stream) diff --git a/Obsidian/Net/Packets/Play/Clientbound/PlayerInfoRemovePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/PlayerInfoRemovePacket.cs index fbbc4d516..89308ab8a 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/PlayerInfoRemovePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/PlayerInfoRemovePacket.cs @@ -6,5 +6,5 @@ public sealed partial class PlayerInfoRemovePacket : IClientboundPacket [Field(0)] public List UUIDs { get; init; } - public int Id => 0x3B; + public int Id => 0x3D; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/PlayerInfoUpdatePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/PlayerInfoUpdatePacket.cs index 23972fd7a..312bf64d8 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/PlayerInfoUpdatePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/PlayerInfoUpdatePacket.cs @@ -6,49 +6,44 @@ namespace Obsidian.Net.Packets.Play.Clientbound; public partial class PlayerInfoUpdatePacket : IClientboundPacket { [Field(0)] - public BitSet UsedActions { get; } = new(); + public PlayerInfoAction Actions { get; private set; } /// /// All action lists must set the same types of InfoAction set /// [Field(1)] - public Dictionary> Actions { get; set; } = new(); + public Dictionary> Players { get; set; } = []; - public int Id => 0x3C; + public int Id => 0x3E; public PlayerInfoUpdatePacket(Dictionary> infoActions) { - this.Actions = new(infoActions); + this.Players = new(infoActions); - this.InitializeBitSet(); + this.InitActions(); } public PlayerInfoUpdatePacket(Guid uuid, InfoAction infoAction) { - Actions.Add(uuid, new() { infoAction }); + Players.Add(uuid, [infoAction]); - this.InitializeBitSet(); + this.InitActions(); } - private void InitializeBitSet() + private void InitActions() { - var enumValues = Enum.GetValues(); - var usedEnums = this.Actions.Values.First().Select(x => x.Type).Distinct(); - - for (int i = 0; i < enumValues.Length; i++) - { - var usingBit = usedEnums.Contains(enumValues[i]); - this.UsedActions.SetBit(i, usingBit); - } + var usedEnums = this.Players.Values.First().Select(x => x.Type).Distinct(); + foreach(var usedEnum in usedEnums) + this.Actions |= usedEnum; } public void Serialize(MinecraftStream stream) { using var packetStream = new MinecraftStream(); - packetStream.WriteBitSet(this.UsedActions, true); - packetStream.WriteVarInt(Actions.Count); - foreach (var (uuid, actions) in this.Actions) + packetStream.WriteByte((sbyte)this.Actions); + packetStream.WriteVarInt(Players.Count); + foreach (var (uuid, actions) in this.Players) { var orderedActions = actions.OrderBy(x => (int)x.Type).ToList(); @@ -69,3 +64,5 @@ public void Serialize(MinecraftStream stream) } } + + diff --git a/Obsidian/Net/Packets/Play/Clientbound/RemoveEntitiesPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/RemoveEntitiesPacket.cs index b4d9f5aed..80ee5b2b7 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/RemoveEntitiesPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/RemoveEntitiesPacket.cs @@ -7,7 +7,7 @@ public partial class RemoveEntitiesPacket : IClientboundPacket [Field(0), VarLength] public List Entities { get; private set; } = new(); - public int Id => 0x40; + public int Id => 0x42; public RemoveEntitiesPacket(params int[] entities) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/RemoveEntityEffectPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/RemoveEntityEffectPacket.cs index 19dca1887..66261a90c 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/RemoveEntityEffectPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/RemoveEntityEffectPacket.cs @@ -10,7 +10,7 @@ public partial class RemoveEntityEffectPacket : IClientboundPacket [Field(1), VarLength] public int EffectId { get; init; } - public int Id => 0x41; + public int Id => 0x43; public RemoveEntityEffectPacket(int entityId, int effectId) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/RespawnPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/RespawnPacket.cs index ee3584f29..6f1def52d 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 => 0x45; + public int Id => 0x47; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetActionBarTextPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetActionBarTextPacket.cs index 91f9076e8..adca88a04 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 => 0x4A; + public int Id => 0x4B; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetCenterChunkPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetCenterChunkPacket.cs index 34a542fec..d05c67bfa 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetCenterChunkPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetCenterChunkPacket.cs @@ -17,5 +17,5 @@ public SetCenterChunkPacket(int chunkX, int chunkZ) ChunkZ = chunkZ; } - public int Id => 0x52; + public int Id => 0x54; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetCooldownPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetCooldownPacket.cs index 9cdaac9f3..d71f3be35 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetCooldownPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetCooldownPacket.cs @@ -10,5 +10,5 @@ public partial class SetCooldownPacket : IClientboundPacket [Field(1), VarLength] public int CooldownTicks { get; init; } - public int Id => 0x16; + public int Id => 0x17; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetDefaultSpawnPositionPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetDefaultSpawnPositionPacket.cs index efa732972..7a9b3596c 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 => 0x54; + public int Id => 0x56; public SetDefaultSpawnPositionPacket(VectorF position) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetEntityMetadataPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetEntityMetadataPacket.cs index 7c1cc25a9..7a22817be 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 => 0x56; + public int Id => 0x58; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetEntityVelocityPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetEntityVelocityPacket.cs index ee3621d2f..9d148f295 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 => 0x58; + public int Id => 0x5A; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetEquipmentPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetEquipmentPacket.cs index df8886c48..835196374 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 => 0x59; + public int Id => 0x5B; public void Serialize(MinecraftStream stream) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetExperiencePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetExperiencePacket.cs index 8600a1957..a9f718e0a 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 => 0x5A; + public int Id => 0x5C; 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 de78a2cff..c5def8786 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 => 0x46; + public int Id => 0x48; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetHealthPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetHealthPacket.cs index 246675d13..b625456d3 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 => 0x5B; + public int Id => 0x5D; 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 68c425807..fbb896b5e 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 => 0x6A; + public int Id => 0x6D; //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 b737fc8d2..a924d5882 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 ? 0x63 : 0x61; + this.Id = mode == TitleMode.SetTitle ? 0x65 : 0x63; } } @@ -26,7 +26,7 @@ public partial class SetTitleAnimationTimesPacket : IClientboundPacket [Field(2)] public int FadeOut { get; set; } - public int Id => 0X64; + public int Id => 0X66; } public enum TitleMode diff --git a/Obsidian/Net/Packets/Play/Clientbound/SoundEffectPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SoundEffectPacket.cs index ea19fdc5d..6d23aac12 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 => 0x66; + public int Id => 0x68; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/StartConfigurationPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/StartConfigurationPacket.cs index 7e3d146f1..990436c11 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 => 0x67; + public int Id => 0x69; public void Serialize(MinecraftStream stream) => this.WritePacketId(stream); } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SynchronizePlayerPositionPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SynchronizePlayerPositionPacket.cs index 9d360fc0d..c4e97d4e7 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SynchronizePlayerPositionPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SynchronizePlayerPositionPacket.cs @@ -30,5 +30,5 @@ public partial class SynchronizePlayerPositionPacket : IClientboundPacket [Field(4), VarLength] public int TeleportId { get; init; } - public int Id => 0x3E; + public int Id => 0x40; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SystemChatMessagePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SystemChatMessagePacket.cs index aeb816eb0..87e6ca7e2 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 => 0x69; + public int Id => 0x6C; 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 368055ec8..7a7bc3eb5 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 => 0x6D; + public int Id => 0x70; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/UnloadChunkPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UnloadChunkPacket.cs index 415b6dc9b..c70cf4127 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UnloadChunkPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UnloadChunkPacket.cs @@ -10,7 +10,7 @@ public partial class UnloadChunkPacket : IClientboundPacket [Field(1)] public int Z { get; } - public int Id => 0x1F; + public int Id => 0x21; public UnloadChunkPacket(int x, int z) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateAdvancementsPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateAdvancementsPacket.cs index 426fe1bac..5e37a6bb1 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 => 0x70; + public int Id => 0x74; public void Serialize(MinecraftStream stream) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityPositionAndRotationPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityPositionAndRotationPacket.cs index d2db2fa4a..2c12ecc00 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityPositionAndRotationPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityPositionAndRotationPacket.cs @@ -19,5 +19,5 @@ public partial class UpdateEntityPositionAndRotationPacket : IClientboundPacket [Field(4)] public bool OnGround { get; init; } - public int Id => 0x2D; + public int Id => 0x2F; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityPositionPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityPositionPacket.cs index 0926bca0b..df1ee9a37 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityPositionPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityPositionPacket.cs @@ -13,5 +13,5 @@ public partial class UpdateEntityPositionPacket : IClientboundPacket [Field(4)] public bool OnGround { get; init; } - public int Id => 0x2C; + public int Id => 0x2E; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityRotationPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityRotationPacket.cs index 8f2090877..f096f2e3b 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityRotationPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateEntityRotationPacket.cs @@ -16,5 +16,5 @@ public partial class UpdateEntityRotationPacket : IClientboundPacket [Field(3)] public bool OnGround { get; init; } - public int Id => 0x2E; + public int Id => 0x30; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateObjectivesPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateObjectivesPacket.cs index e48784d51..a74e83911 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateObjectivesPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateObjectivesPacket.cs @@ -30,7 +30,7 @@ public partial class UpdateObjectivesPacket : IClientboundPacket [Field(6), Condition("NumberFormat == NumberFormat.Fixed"), ActualType(typeof(ChatMessage))] public ChatMessage? Content { get; init; } - public int Id => 0x5C; + public int Id => 0x5E; private bool ShouldWriteValue => Mode is ScoreboardMode.Create or ScoreboardMode.Update; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateRecipeBookPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateRecipeBookPacket.cs index 52fad5fdb..e90ff9983 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateRecipeBookPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateRecipeBookPacket.cs @@ -37,7 +37,7 @@ public partial class UpdateRecipeBookPacket : IClientboundPacket [Field(10), Condition("Action == UnlockRecipeAction.Init")] public List SecondRecipeIds { get; init; } - public int Id => 0x3F; + public int Id => 0x41; } public enum UnlockRecipeAction : int diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateRecipesPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateRecipesPacket.cs index 5160b6b0d..1b92012f3 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 => 0x73; + public int Id => 0x77; 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 d7df6865b..b9fad8804 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateScorePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateScorePacket.cs @@ -42,5 +42,5 @@ public partial class UpdateScorePacket : IClientboundPacket [Field(7), Condition("NumberFormat == NumberFormat.Fixed"), ActualType(typeof(ChatMessage))] public ChatMessage? Content { get; init; } - public int Id => 0x5F; + public int Id => 0x61; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateTeamsPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateTeamsPacket.cs index d89262934..4eba97f39 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateTeamsPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateTeamsPacket.cs @@ -3,6 +3,7 @@ namespace Obsidian.Net.Packets.Play.Clientbound; +//TODO clean this class up public partial class UpdateTeamsPacket : IClientboundPacket { [Field(0), FixedLength(16)] @@ -35,7 +36,7 @@ public partial class UpdateTeamsPacket : IClientboundPacket [Field(9), Condition("Mode != TeamModeOption.RemoveTeam || Mode != TeamModeOption.UpdateTeam")] public HashSet Entities { get; set; } = new(); - public int Id => 0x5E; + public int Id => 0x60; public void Serialize(MinecraftStream stream) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateTimePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateTimePacket.cs index 3dd2dc619..bf0bd3e11 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 => 0x62; + public int Id => 0x64; public UpdateTimePacket(long worldAge, long timeOfDay) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/AcknowledgeConfiguration.cs b/Obsidian/Net/Packets/Play/Serverbound/AcknowledgeConfiguration.cs index 7ffa7026e..a01ed8448 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/AcknowledgeConfiguration.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/AcknowledgeConfiguration.cs @@ -3,7 +3,7 @@ namespace Obsidian.Net.Packets.Play.Serverbound; public sealed partial class AcknowledgeConfiguration : IServerboundPacket { - public int Id => 0x0B; + public int Id => 0x0C; //TODO handle public ValueTask HandleAsync(Server server, Player player) => ValueTask.CompletedTask; diff --git a/Obsidian/Net/Packets/Play/Serverbound/ChatMessagePacket.cs b/Obsidian/Net/Packets/Play/Serverbound/ChatMessagePacket.cs index c4b30d678..29a053344 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/ChatMessagePacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/ChatMessagePacket.cs @@ -30,7 +30,7 @@ public partial class ChatMessagePacket : IServerboundPacket public SignedMessage LastMessage { get; private set; } - public int Id => 0x05; + public int Id => 0x06; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/ChunkBatchReceivedPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/ChunkBatchReceivedPacket.cs index ceca8e241..7ee7ae8a6 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/ChunkBatchReceivedPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/ChunkBatchReceivedPacket.cs @@ -7,7 +7,7 @@ public sealed partial class ChunkBatchReceivedPacket : IServerboundPacket [Field(0)] public float ChunksPerTick { get; set; } - public int Id => 0x07; + public int Id => 0x08; //TODO impl public ValueTask HandleAsync(Server server, Player player) => ValueTask.CompletedTask; diff --git a/Obsidian/Net/Packets/Play/Serverbound/ClickContainerButtonPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/ClickContainerButtonPacket.cs index 8f82b8bba..13830e009 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/ClickContainerButtonPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/ClickContainerButtonPacket.cs @@ -11,7 +11,7 @@ public partial class ClickContainerButtonPacket : IServerboundPacket [Field(1)] public sbyte ButtonId { get; private set; } - public int Id => 0x0C; + public int Id => 0x0D; public ValueTask HandleAsync(Server server, Player player) => ValueTask.CompletedTask; } diff --git a/Obsidian/Net/Packets/Play/Serverbound/ClickContainerPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/ClickContainerPacket.cs index 241925eec..e286515a8 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/ClickContainerPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/ClickContainerPacket.cs @@ -53,7 +53,7 @@ public partial class ClickContainerPacket : IServerboundPacket private bool IsPlayerInventory => this.WindowId == 0; - public int Id => 0x0D; + public int Id => 0x0E; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/ClientStatusPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/ClientStatusPacket.cs index be1cae46c..fec0c88d5 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/ClientStatusPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/ClientStatusPacket.cs @@ -8,7 +8,7 @@ public partial class ClientStatusPacket : IServerboundPacket [Field(0), ActualType(typeof(int)), VarLength] public ClientAction Action { get; private set; } - public int Id => 0x08; + public int Id => 0x09; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/InteractPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/InteractPacket.cs index 64b93a363..e054c9917 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 => 0x13; + public int Id => 0x16; 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 84a1ad091..8cbe991d7 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 => 0x1D; + public int Id => 0x20; 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 3bab1197a..a1dcbfc2a 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 => 0x1F; + public int Id => 0x22; 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 19f16d3f5..af2a9ffa5 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 => 0x21; + public int Id => 0x24; 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 5336b3529..70b011dd2 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 => 0x22; + public int Id => 0x25; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/PlayerSessionPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/PlayerSessionPacket.cs index dd8016247..cbe4fe39d 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/PlayerSessionPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/PlayerSessionPacket.cs @@ -10,7 +10,7 @@ public sealed partial class PlayerSessionPacket : IServerboundPacket [Field(1)] public SignatureData SignatureData { get; set; } - public int Id => 0x06; + public int Id => 0x07; public 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 c80ddef8a..9576fd5c4 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 => 0x27; + public int Id => 0x2A; public ValueTask HandleAsync(Server server, Player player) => ValueTask.CompletedTask; } diff --git a/Obsidian/Net/Packets/Play/Serverbound/SetSeenRecipePacket.cs b/Obsidian/Net/Packets/Play/Serverbound/SetSeenRecipePacket.cs index 28b041c07..80b22c033 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 => 0x26; + public int Id => 0x29; 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 da70967df..96fb2f624 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 => 0x33; + public int Id => 0x36; 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 f1e3e15f3..e7d756ffa 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/UseItemOnPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/UseItemOnPacket.cs @@ -26,7 +26,7 @@ public partial class UseItemOnPacket : IServerboundPacket [Field(7), VarLength] public int Sequence { get; private set; } - public int Id => 0x35; + public int Id => 0x38; 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 f06569dc7..63953736a 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 => 0x36; + public int Id => 0x39; 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 91cdef3e5..643df2db2 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 ? 0x51 : 0x2C; + this.Id = toClient ? 0x53 : 0x2F; } public void Serialize(MinecraftStream stream) diff --git a/Obsidian/Net/Packets/PluginMessagePacket.cs b/Obsidian/Net/Packets/PluginMessagePacket.cs index 7fd148917..5e5a3db5e 100644 --- a/Obsidian/Net/Packets/PluginMessagePacket.cs +++ b/Obsidian/Net/Packets/PluginMessagePacket.cs @@ -12,7 +12,7 @@ public partial class PluginMessagePacket : IClientboundPacket, IServerboundPacke [Field(1)] public byte[] PluginData { get; private set; } - public int Id => 0x18; + public int Id => 0x19; public PluginMessagePacket() { diff --git a/Obsidian/Net/Packets/UpdateTagsPacket.cs b/Obsidian/Net/Packets/UpdateTagsPacket.cs index e78e2c25b..a0f7a46e1 100644 --- a/Obsidian/Net/Packets/UpdateTagsPacket.cs +++ b/Obsidian/Net/Packets/UpdateTagsPacket.cs @@ -1,18 +1,13 @@ using Obsidian.Serialization.Attributes; namespace Obsidian.Net.Packets; -public sealed partial class UpdateTagsPacket : IClientboundPacket +public sealed partial class UpdateTagsPacket(IDictionary tags) : IClientboundPacket { [Field(0)] - public IDictionary Tags { get; } + public IDictionary Tags { get; } = tags; - //TODO FOR RELOADS 0x74 for play state - public int Id { get; init; } = 0x09; + //TODO FOR RELOADS 0x78 for play state + public int Id { get; init; } = 0x0D; public static UpdateTagsPacket FromRegistry { get; } = new(Registries.TagsRegistry.Categories); - - public UpdateTagsPacket(IDictionary tags) - { - this.Tags = tags; - } } diff --git a/Obsidian/Obsidian.csproj b/Obsidian/Obsidian.csproj index f9f16d2fb..0e2c2a1fc 100644 --- a/Obsidian/Obsidian.csproj +++ b/Obsidian/Obsidian.csproj @@ -69,51 +69,10 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - Never - - - - - - - - - - - - - - + diff --git a/Obsidian/Registries/BlocksRegistry.cs b/Obsidian/Registries/BlocksRegistry.cs index 5886f5e6c..4e3730fde 100644 --- a/Obsidian/Registries/BlocksRegistry.cs +++ b/Obsidian/Registries/BlocksRegistry.cs @@ -143,6 +143,8 @@ private static string GetSanitizedName(string value) sanitizedBlockName = "ObsidianBlock"; if (sanitizedBlockName == "TrialSpawner") sanitizedBlockName = "TrialSpawnerBlock"; + if (sanitizedBlockName == "Vault") + sanitizedBlockName = "VaultBlock"; return sanitizedBlockName; } diff --git a/Obsidian/Registries/StructureRegistry.cs b/Obsidian/Registries/StructureRegistry.cs index 7f0090d9c..8a675f085 100644 --- a/Obsidian/Registries/StructureRegistry.cs +++ b/Obsidian/Registries/StructureRegistry.cs @@ -1,5 +1,4 @@ using Obsidian.Nbt; -using System.Diagnostics; using System.IO; namespace Obsidian.Registries; diff --git a/Obsidian/Server.cs b/Obsidian/Server.cs index 4d726aa8f..85d8b794f 100644 --- a/Obsidian/Server.cs +++ b/Obsidian/Server.cs @@ -52,7 +52,7 @@ public static string VERSION } } #endif - public const ProtocolVersion DefaultProtocol = ProtocolVersion.v1_20_4; + public const ProtocolVersion DefaultProtocol = ProtocolVersion.v1_20_6; 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 f71aac77b..9ca590e68 100644 --- a/Obsidian/Utilities/Converters/RecipeConverter.cs +++ b/Obsidian/Utilities/Converters/RecipeConverter.cs @@ -86,13 +86,14 @@ public sealed class RecipesConverter : JsonConverter }); break; case CraftingType.Stonecutting: + var ingredient = value.GetProperty("ingredient"); recipes.Add(new CuttingRecipe { Identifier = recipeName, Type = craftingType, Group = group, - Count = value.GetProperty("count").GetInt32(), - Ingredient = value.GetProperty("ingredient").Deserialize(options)!, + Ingredient = ingredient.Deserialize(options)!, + Count = ingredient.GetProperty("count").GetInt32(),//TODO the recipe format more or less changed look into this. Result = result }); break; diff --git a/Obsidian/Utilities/Extensions.Nbt.cs b/Obsidian/Utilities/Extensions.Nbt.cs index 555d27890..01721daa7 100644 --- a/Obsidian/Utilities/Extensions.Nbt.cs +++ b/Obsidian/Utilities/Extensions.Nbt.cs @@ -4,6 +4,7 @@ using Obsidian.API.Registry.Codecs.Chat; using Obsidian.API.Registry.Codecs.DamageTypes; using Obsidian.API.Registry.Codecs.Dimensions; +using Obsidian.API.Registry.Codecs.WolfVariant; using Obsidian.API.Utilities; using Obsidian.Nbt; using Obsidian.Registries; @@ -167,73 +168,73 @@ public static NbtCompound ToNbt(this ItemStack? value) switch (name.ToUpperInvariant()) { case "ENCHANTMENTS": - { - var enchantments = (NbtList)child; - - foreach (var enchant in enchantments) { - if (enchant is NbtCompound compound) + var enchantments = (NbtList)child; + + foreach (var enchant in enchantments) { - itemMetaBuilder.AddEnchantment(compound.GetString("id").ToEnchantType(), compound.GetShort("lvl")); + if (enchant is NbtCompound compound) + { + itemMetaBuilder.AddEnchantment(compound.GetString("id").ToEnchantType(), compound.GetShort("lvl")); + } } - } - break; - } + break; + } case "STOREDENCHANTMENTS": - { - var enchantments = (NbtList)child; - - foreach (var enchantment in enchantments) { - if (enchantment is NbtCompound compound) + var enchantments = (NbtList)child; + + foreach (var enchantment in enchantments) { - compound.TryGetTag("id", out var id); - compound.TryGetTag("lvl", out var lvl); + if (enchantment is NbtCompound compound) + { + compound.TryGetTag("id", out var id); + compound.TryGetTag("lvl", out var lvl); - itemMetaBuilder.AddStoredEnchantment(compound.GetString("id").ToEnchantType(), compound.GetShort("lvl")); + itemMetaBuilder.AddStoredEnchantment(compound.GetString("id").ToEnchantType(), compound.GetShort("lvl")); + } } + break; } - break; - } case "SLOT": - { - var byteTag = (NbtTag)child; + { + var byteTag = (NbtTag)child; - itemStack.Slot = byteTag.Value; - break; - } + itemStack.Slot = byteTag.Value; + break; + } case "DAMAGE": - { - var intTag = (NbtTag)child; + { + var intTag = (NbtTag)child; - itemMetaBuilder.WithDurability(intTag.Value); - break; - } + itemMetaBuilder.WithDurability(intTag.Value); + break; + } case "DISPLAY": - { - var display = (NbtCompound)child; - - foreach (var (displayTagName, displayTag) in display) { - if (displayTagName.EqualsIgnoreCase("name") && displayTag is NbtTag stringTag) - { - itemMetaBuilder.WithName(stringTag.Value); - } - else if (displayTag.Name.EqualsIgnoreCase("lore")) - { - var loreTag = (NbtList)displayTag; + var display = (NbtCompound)child; - foreach (NbtTag lore in loreTag) - itemMetaBuilder.AddLore(lore.Value.FromJson()); + foreach (var (displayTagName, displayTag) in display) + { + if (displayTagName.EqualsIgnoreCase("name") && displayTag is NbtTag stringTag) + { + itemMetaBuilder.WithName(stringTag.Value); + } + else if (displayTag.Name.EqualsIgnoreCase("lore")) + { + var loreTag = (NbtList)displayTag; + + foreach (NbtTag lore in loreTag) + itemMetaBuilder.AddLore(lore.Value.FromJson()); + } } + break; } - break; - } } } @@ -242,11 +243,11 @@ public static NbtCompound ToNbt(this ItemStack? value) return itemStack; } + //TODO this can be made A LOT FASTER public static IBlock ToBlock(this NbtCompound comp) { var name = comp.GetString("Name").Split(":")[1].ToPascalCase(); - var assm = Assembly.Load("Obsidian.API"); - Type builderType = assm.GetType($"Obsidian.API.BlockStates.Builders.{name}StateBuilder"); + Type builderType = typeof(IBlockState).Assembly.GetType($"Obsidian.API.BlockStates.Builders.{name}StateBuilder"); if (builderType == null) { @@ -374,6 +375,21 @@ public static void WriteElement(this DimensionCodec value, NbtWriter writer) writer.WriteBool("has_raids", value.Element.HasRaids); + writer.WriteInt("monster_spawn_block_light_limit", value.Element.MonsterSpawnBlockLightLimit); + + if (value.Element.MonsterSpawnLightLevel.IntValue.HasValue) + writer.WriteInt("monster_spawn_light_level", value.Element.MonsterSpawnLightLevel.IntValue.Value); + else + { + var monsterLight = value.Element.MonsterSpawnLightLevel.Value!.Value; + writer.WriteTag(new NbtCompound("monster_spawn_light_level") + { + new NbtTag("type", monsterLight.Type), + new NbtTag("max_inclusive", monsterLight.MaxInclusive), + new NbtTag("min_inclusive", monsterLight.MinInclusive) + }); + } + writer.WriteInt("min_y", value.Element.MinY); writer.WriteInt("height", value.Element.Height); @@ -389,56 +405,24 @@ public static void WriteElement(this DimensionCodec value, NbtWriter writer) #region Damage Type Codec Writing - public static void Write(this DamageTypeCodec value, NbtList list) - { - var compound = new NbtCompound - { - new NbtTag("id", value.Id), - - new NbtTag("name", value.Name), - - value.WriteElement() - }; - - list.Add(compound); - } - public static NbtCompound WriteElement(this DamageTypeCodec value) + public static void WriteElement(this DamageTypeCodec value, NbtWriter writer) { var damageTypeElement = value.Element; - var element = new NbtCompound("element") - { - new NbtTag("exhaustion", damageTypeElement.Exhaustion), - new NbtTag("message_id", damageTypeElement.MessageId), - new NbtTag("scaling", damageTypeElement.Scaling.ToString().ToSnakeCase()) - }; - if (damageTypeElement.DeathMessageType is DeathMessageType deathMessageType) - element.Add(new NbtTag("death_message_type", deathMessageType.ToString().ToSnakeCase())); + writer.WriteString("death_message_type", deathMessageType.ToString().ToSnakeCase()); if (damageTypeElement.Effects is DamageEffects damageEffects) - element.Add(new NbtTag("effects", damageEffects.ToString().ToSnakeCase())); + writer.WriteString("effects", damageEffects.ToString().ToSnakeCase()); - return element; + writer.WriteFloat("exhaustion", damageTypeElement.Exhaustion); + writer.WriteString("message_id", damageTypeElement.MessageId); + writer.WriteString("scaling", damageTypeElement.Scaling.ToString().ToSnakeCase()); } #endregion #region Chat Codec Writing - public static void Write(this ChatCodec value, NbtList list) - { - var compound = new NbtCompound - { - new NbtTag("id", value.Id), - - new NbtTag("name", value.Name), - - value.WriteElement() - }; - - list.Add(compound); - } - - public static NbtCompound WriteElement(this ChatCodec value) + public static void WriteElement(this ChatCodec value, NbtWriter writer) { var chatElement = value.Element; var chat = chatElement.Chat; @@ -473,53 +457,30 @@ public static NbtCompound WriteElement(this ChatCodec value) new NbtTag("translation_key", narration.TranslationKey) }; - var element = new NbtCompound("element") - { - chatCompound, - narrationCompound, - }; - - return element; + writer.WriteTag(chatCompound); + writer.WriteTag(narrationCompound); } #endregion #region Biome Codec Writing - public static void Write(this BiomeCodec value, NbtList list) + public static void WriteElement(this BiomeCodec value, NbtWriter writer) { - var compound = new NbtCompound - { - new NbtTag("name", value.Name), - new NbtTag("id", value.Id), - - value.WriteElement() - }; - - list.Add(compound); - } - - public static NbtCompound WriteElement(this BiomeCodec value) - { - var elements = new NbtCompound("element") - { - new NbtTag("has_precipitation", value.Element.HasPrecipitation), - new NbtTag("depth", value.Element.Depth), - new NbtTag("temperature", value.Element.Temperature), - new NbtTag("scale", value.Element.Scale), - new NbtTag("downfall", value.Element.Downfall) - }; + writer.WriteBool("has_precipitation", value.Element.HasPrecipitation); + writer.WriteFloat("depth", value.Element.Depth); + writer.WriteFloat("temperature", value.Element.Temperature); + writer.WriteFloat("scale", value.Element.Scale); + writer.WriteFloat("downfall", value.Element.Downfall); if (!value.Element.Category.IsNullOrEmpty()) - elements.Add(new NbtTag("category", value.Element.Category!)); + writer.WriteString("category", value.Element.Category!); - value.Element.Effects.WriteEffect(elements); + value.Element.Effects.WriteEffect(writer); if (!value.Element.TemperatureModifier.IsNullOrEmpty()) - elements.Add(new NbtTag("temperature_modifier", value.Element.TemperatureModifier)); - - return elements; + writer.WriteString("temperature_modifier", value.Element.TemperatureModifier); } - public static void WriteEffect(this BiomeEffect value, NbtCompound compound) + public static void WriteEffect(this BiomeEffect value, NbtWriter writer) { var effects = new NbtCompound("effects") { @@ -551,9 +512,9 @@ public static void WriteEffect(this BiomeEffect value, NbtCompound compound) effects.Add(new NbtTag("ambient_sound", value.AmbientSound)); if (value.Particle != null) - value.Particle.WriteParticle(compound); + value.Particle.WriteParticle(writer); - compound.Add(effects); + writer.WriteTag(effects); } public static void WriteMusic(this BiomeMusicEffect musicEffect, NbtCompound compound) @@ -595,7 +556,7 @@ public static void WriteMoodSound(this BiomeMoodSound value, NbtCompound compoun compound.Add(mood); } - public static void WriteParticle(this BiomeParticle value, NbtCompound compound) + public static void WriteParticle(this BiomeParticle value, NbtWriter writer) { var particle = new NbtCompound("particle") { @@ -612,26 +573,13 @@ public static void WriteParticle(this BiomeParticle value, NbtCompound compound) particle.Add(options); } - compound.Add(particle); + writer.WriteTag(particle); } #endregion #region Trim Pattern Writing - public static void Write(this TrimPatternCodec value, NbtList list) - { - var compound = new NbtCompound - { - new NbtTag("id", value.Id), - - new NbtTag("name", value.Name), - - value.WriteElement() - }; - list.Add(compound); - } - - public static NbtCompound WriteElement(this TrimPatternCodec value) + public static void WriteElement(this TrimPatternCodec value, NbtWriter writer) { var patternElement = value.Element; @@ -640,34 +588,16 @@ public static NbtCompound WriteElement(this TrimPatternCodec value) new NbtTag("translate", patternElement.Description.Translate) }; - var element = new NbtCompound("element") - { - new NbtTag("template_item", patternElement.TemplateItem), - description, - new NbtTag("asset_id", patternElement.AssetId), - new NbtTag("decal", patternElement.Decal) - }; + writer.WriteString("template_item", patternElement.TemplateItem); + writer.WriteString("asset_id", patternElement.AssetId); + writer.WriteBool("decal", patternElement.Decal); + writer.WriteTag(description); - return element; } #endregion #region Trim Material Writing - public static void Write(this TrimMaterialCodec value, NbtList list) - { - var compound = new NbtCompound - { - new NbtTag("id", value.Id), - - new NbtTag("name", value.Name), - - value.WriteElement() - }; - - list.Add(compound); - } - - public static NbtCompound WriteElement(this TrimMaterialCodec value) + public static void WriteElement(this TrimMaterialCodec value, NbtWriter writer) { var materialElement = value.Element; @@ -677,14 +607,6 @@ public static NbtCompound WriteElement(this TrimMaterialCodec value) new NbtTag("color", materialElement.Description.Color!) }; - var element = new NbtCompound("element") - { - new NbtTag("ingredient", materialElement.Ingredient), - description, - new NbtTag("asset_name", materialElement.AssetName), - new NbtTag("item_model_index", materialElement.ItemModelIndex) - }; - if (materialElement.OverrideArmorMaterials is Dictionary overrideArmorMats) { var overrideArmorMaterialsCompound = new NbtCompound("override_armor_materials"); @@ -692,10 +614,26 @@ public static NbtCompound WriteElement(this TrimMaterialCodec value) foreach (var (type, replacement) in overrideArmorMats) overrideArmorMaterialsCompound.Add(new NbtTag(type, replacement)); - element.Add(overrideArmorMaterialsCompound); + writer.WriteTag(overrideArmorMaterialsCompound); } - return element; + writer.WriteString("ingredient", materialElement.Ingredient); + writer.WriteString("asset_name", materialElement.AssetName); + writer.WriteDouble("item_model_index", materialElement.ItemModelIndex); + writer.WriteTag(description); + } + #endregion + + #region Wolf Variant Writing + + public static void WriteElement(this WolfVariantCodec value, NbtWriter writer) + { + var materialElement = value.Element; + + writer.WriteString("tame_texture", materialElement.TameTexture); + writer.WriteString("angry_texture", materialElement.AngryTexture); + writer.WriteString("wild_texture", materialElement.WildTexture); + writer.WriteString("biomes", materialElement.Biomes); } #endregion }